Skip to content

Commit 76687a9

Browse files
committed
compile JS
1 parent a881fb3 commit 76687a9

File tree

4 files changed

+15
-21
lines changed

4 files changed

+15
-21
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The grid is similar to grids on Google Image Search, flickr, shutterstock and Go
55

66
Features:
77

8-
* responisve
8+
* responsive
99
* infinite scrolling
1010
* support for all modern browsers and IE >= 8
1111

@@ -14,16 +14,16 @@ Check out the vanilla-js branch to use the version that doesn't require jQuery:
1414
[![Example Grid](http://brunjo.github.io/rowGrid.js/example.png)][2]
1515

1616
Do you like this project? Follow me on Twitter [@3runjo][1].
17-
17+
1818
## How does it work?
1919
All items must have the **same height** but the **width can be variable**. RowGrid.js justifies the items in straight rows so that the width of the rows equals the width of the container/parent element.
2020
At first rowGrid.js adjusts the margin between the items. If this is not enough rowGrid.js scales down the items.
21-
21+
2222
## Demos & Examples
2323
Examples with explanation: http://brunjo.github.io/rowGrid.js/
2424

2525
Real world example: http://www.pexels.com/
26-
26+
2727
## Installation
2828
RowGrid.js requires jQuery 1.7 or above.
2929
```HTML
@@ -64,7 +64,7 @@ $(".container").rowGrid("appended");
6464
```JS
6565
$(".container").rowGrid({
6666
itemSelector: ".item"
67-
minMargin: 10,
67+
minMargin: 10,
6868
maxMargin: 35,
6969
resize: true,
7070
lastRowClass: "last-row",

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "rowGrid.js",
33
"description": "A small, lightweight jQuery plugin for placing items in straight rows",
4-
"version": "1.0.3",
4+
"version": "1.0.4",
55
"license": "MIT",
66
"authors": [
77
{ "name": "Bruno Joseph", "email": "[email protected]"," homepage": "http://brunojoseph.com" }

example/index.html

+4-10
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
/* clearfix because of floats */
88
.container:before,
99
.container:after {
10-
content: "";
11-
display: table;
10+
content: "";
11+
display: table;
1212
}
1313
.container:after {
14-
clear: both;
14+
clear: both;
1515
}
1616
.item {
1717
float: left;
18-
margin-bottom: 15px;
18+
margin-bottom: 15px;
1919
}
2020
.item img {
2121
max-width: 100%;
@@ -169,12 +169,6 @@ <h1><a href="https://github.com/brunjo/rowGrid.js">rowGrid.js Example</a></h1>
169169
<div class="item">
170170
<img src="http://lorempixel.com/190/200?20" width="190" height="200" />
171171
</div>
172-
<div class="item">
173-
<img src="http://lorempixel.com/260/200?21" width="260" height="200" />
174-
</div>
175-
<div class="item">
176-
<img src="http://lorempixel.com/220/200?22" width="220" height="200" />
177-
</div>
178172
</div>
179173
</body>
180174
</html>

jquery.row-grid.min.js

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)