Skip to content

Commit

Permalink
Update info
Browse files Browse the repository at this point in the history
  • Loading branch information
codler committed Apr 8, 2013
1 parent 7c795e4 commit 939413c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
11 changes: 8 additions & 3 deletions README.md
Expand Up @@ -17,7 +17,12 @@ Simply add the script after jQuery

### Options

`$(grid).gridLayout('refresh')` will recalculate existing initiated grid. Useful when for example you have set a new height with JavaScript on the grid.
* `$(grid).gridLayout('refresh')` will recalculate existing initiated grid. Useful when for example you have set a new height with JavaScript on the grid.

$(grid).gridLayout({
// Resize event, triggers when window resize with 100ms delay to increase performance
'resize' : function() {}
})

## Browser support

Expand All @@ -30,8 +35,8 @@ Simply add the script after jQuery
### What is covered?

display: -ms-grid;
-ms-grid-columns: 100px 1fr 100px; /* Only pixel and fraction units */
-ms-grid-rows: 100px 1fr 100px; /* Only pixel and fraction units */
-ms-grid-columns: 100px 1fr auto; /* Only pixel, fraction and auto units */
-ms-grid-rows: 100px 1fr auto; /* Only pixel, fraction and auto units */

-ms-grid-column: 1;
-ms-grid-row: 1;
Expand Down

0 comments on commit 939413c

Please sign in to comment.