From 91d81977919370302a3e950b91f1dd0be7d1174b Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 21 Jan 2016 23:27:26 +0100 Subject: debug --- js/build/app.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'js/build/app.js') diff --git a/js/build/app.js b/js/build/app.js index a4086830d..5ac2abd85 100644 --- a/js/build/app.js +++ b/js/build/app.js @@ -2861,9 +2861,9 @@ app.directive('newsReadFile', function () { }); app.directive('newsRefreshMasonry', ["$timeout", function ($timeout) { 'use strict'; - var refresh = function () { + var refresh = function (elem) { $timeout(function () { - $('.grid').masonry({ + elem.parent().masonry({ itemSelector: '.grid-item', gutter: 25, columnWidth: 300 @@ -2871,9 +2871,9 @@ app.directive('newsRefreshMasonry', ["$timeout", function ($timeout) { }); }; - return function (scope) { + return function (scope, elem) { if (scope.$last) { - refresh(); + refresh(elem); } }; }]); -- cgit v1.2.3