Skip to content
This repository was archived by the owner on Dec 30, 2018. It is now read-only.

Commit 3b880ec

Browse files
committed
v0.3.0
1 parent e73c3e6 commit 3b880ec

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
<a name="v0.3.0"></a>
2+
## v0.3.0 (2013-08-04)
3+
4+
5+
#### Bug Fixes
6+
7+
* **app:**
8+
* column width is an integer ([f04d3a2e](http://github.com/passy/angular-masonry/commit/f04d3a2e1369b6aa1dfc84de02ba4ab6925968a6))
9+
* more careful relayout scheduling ([9b215d6f](http://github.com/passy/angular-masonry/commit/9b215d6f154567823c903319a75fbd13bbc628f9))
10+
11+
12+
#### Features
13+
14+
* **app:** upgraded to masonry 3.1 ([e73c3e62](http://github.com/passy/angular-masonry/commit/e73c3e624fc5ef1a023747caffba5da3794abd8f))
15+
116
<a name="v0.2.1"></a>
217
## v0.2.0 (2013-07-22)
318

angular-masonry.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* angular-masonry 0.2.1
2+
* angular-masonry 0.3.0
33
* Pascal Hartig, weluse GmbH, http://weluse.de/
44
* License: MIT
55
*/
@@ -104,7 +104,7 @@
104104
var attrOptions = scope.$eval(attrs.options);
105105
var options = angular.extend(attrOptions || {}, {
106106
itemSelector: attrs.itemSelector || '.masonry-brick',
107-
columnWidth: attrs.columnWidth
107+
columnWidth: parseInt(attrs.columnWidth, 10)
108108
});
109109
element.masonry(options);
110110

angular-masonry.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-masonry",
33
"description": "An AngularJS directive for Masonry.",
4-
"version": "0.2.1",
4+
"version": "0.3.0",
55
"main": "./angular-masonry.js",
66
"ignore": [
77
"**/.*",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-masonry",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"devDependencies": {
55
"grunt-contrib-uglify": "~0.2.2",
66
"grunt": "~0.4.1",

0 commit comments

Comments
 (0)