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

Commit

Permalink
v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
passy committed Aug 4, 2013
1 parent ad854df commit 8097697
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
<a name="v0.3.2"></a>
### v0.3.2 (2013-08-04)


#### Bug Fixes

* **app:** enforce new scope for each brick ([ad854df4](http://github.com/passy/angular-masonry/commit/ad854df4e27e952535a0bca20686abaa6cf771db))

<a name="v0.3.1"></a>
### v0.3.1 (2013-08-04)

Expand Down
7 changes: 4 additions & 3 deletions angular-masonry.js
@@ -1,5 +1,5 @@
/*!
* angular-masonry 0.3.1
* angular-masonry 0.3.2
* Pascal Hartig, weluse GmbH, http://weluse.de/
* License: MIT
*/
Expand All @@ -23,7 +23,7 @@
if (!found) {
this.scheduleMasonry.apply(null, arguments);
}
}
};

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

function defaultLoaded($element) {
$element.addClass('loaded');
Expand Down Expand Up @@ -116,6 +116,7 @@
return {
restrict: 'AC',
require: '^masonry',
scope: true,
link: function postLink(scope, element, attrs, ctrl) {
var id = scope.$id;

Expand Down
4 changes: 2 additions & 2 deletions angular-masonry.min.js

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

2 changes: 1 addition & 1 deletion bower.json
@@ -1,7 +1,7 @@
{
"name": "angular-masonry",
"description": "An AngularJS directive for Masonry.",
"version": "0.3.1",
"version": "0.3.2",
"main": "./angular-masonry.js",
"ignore": [
"**/.*",
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "angular-masonry",
"version": "0.3.1",
"version": "0.3.2",
"devDependencies": {
"grunt-contrib-uglify": "~0.2.2",
"grunt": "~0.4.1",
Expand Down

0 comments on commit 8097697

Please sign in to comment.