Skip to content

Commit

Permalink
support IE8 #12
Browse files Browse the repository at this point in the history
  • Loading branch information
brunjo committed Aug 5, 2014
1 parent 492687a commit 196f340
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Features:

* responisve
* infinite scrolling
* support for all modern browsers and IE >= 9
* support for all modern browsers and IE >= 8

[![Example Grid](http://brunjo.github.io/rowGrid.js/example.png)][2]

Expand Down
2 changes: 1 addition & 1 deletion jquery.row-grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
function layout(container, options, items) {
var rowWidth = 0,
rowElems = [],
items = Array.prototype.slice.call(items || container.querySelectorAll(options.itemSelector)),
items = jQuery.makeArray(items || container.querySelectorAll(options.itemSelector)),
itemsSize = items.length;
// read
var containerWidth = container.clientWidth-parseFloat($(container).css('padding-left'))-parseFloat($(container).css('padding-right'));
Expand Down
2 changes: 1 addition & 1 deletion jquery.row-grid.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 196f340

Please sign in to comment.