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

Commit 8097697

Browse files
committed
v0.3.2
1 parent ad854df commit 8097697

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
<a name="v0.3.2"></a>
2+
### v0.3.2 (2013-08-04)
3+
4+
5+
#### Bug Fixes
6+
7+
* **app:** enforce new scope for each brick ([ad854df4](http://github.com/passy/angular-masonry/commit/ad854df4e27e952535a0bca20686abaa6cf771db))
8+
19
<a name="v0.3.1"></a>
210
### v0.3.1 (2013-08-04)
311

angular-masonry.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* angular-masonry 0.3.1
2+
* angular-masonry 0.3.2
33
* Pascal Hartig, weluse GmbH, http://weluse.de/
44
* License: MIT
55
*/
@@ -23,7 +23,7 @@
2323
if (!found) {
2424
this.scheduleMasonry.apply(null, arguments);
2525
}
26-
}
26+
};
2727

2828
// Make sure it's only executed once within a reasonable time-frame in
2929
// case multiple elements are removed or added at once.
@@ -43,7 +43,7 @@
4343
});
4444
schedule = [];
4545
}, 30);
46-
}
46+
};
4747

4848
function defaultLoaded($element) {
4949
$element.addClass('loaded');
@@ -116,6 +116,7 @@
116116
return {
117117
restrict: 'AC',
118118
require: '^masonry',
119+
scope: true,
119120
link: function postLink(scope, element, attrs, ctrl) {
120121
var id = scope.$id;
121122

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.3.1",
4+
"version": "0.3.2",
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.3.1",
3+
"version": "0.3.2",
44
"devDependencies": {
55
"grunt-contrib-uglify": "~0.2.2",
66
"grunt": "~0.4.1",

0 commit comments

Comments
 (0)