This commit is contained in:
Bernhard Posselt 2016-01-21 23:32:23 +01:00
Родитель e996b1e904
Коммит deffd49d09
4 изменённых файлов: 21 добавлений и 17 удалений

Просмотреть файл

@ -2859,16 +2859,18 @@ app.directive('newsReadFile', function () {
});
};
});
app.directive('newsRefreshMasonry', function () {
app.directive('newsRefreshMasonry', ["$timeout", function ($timeout) {
'use strict';
var refresh = function (elem) {
elem.parent().masonry({
itemSelector: '.grid-item',
gutter: 25,
columnWidth: 300
$timeout(function () {
$timeout(function () {
elem.parent().masonry({
itemSelector: '.grid-item',
gutter: 25,
columnWidth: 300
});
});
});
};
return function (scope, elem) {
@ -2876,7 +2878,7 @@ app.directive('newsRefreshMasonry', function () {
refresh(elem);
}
};
});
}]);
app.directive('newsScroll', ["$timeout", "ITEM_AUTO_PAGE_SIZE", "MARK_READ_TIMEOUT", "SCROLL_TIMEOUT", function ($timeout, ITEM_AUTO_PAGE_SIZE,
MARK_READ_TIMEOUT, SCROLL_TIMEOUT) {
'use strict';

2
js/build/app.min.js поставляемый

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -7,16 +7,18 @@
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2014
*/
app.directive('newsRefreshMasonry', function () {
app.directive('newsRefreshMasonry', function ($timeout) {
'use strict';
var refresh = function (elem) {
elem.parent().masonry({
itemSelector: '.grid-item',
gutter: 25,
columnWidth: 300
$timeout(function () {
$timeout(function () {
elem.parent().masonry({
itemSelector: '.grid-item',
gutter: 25,
columnWidth: 300
});
});
});
};
return function (scope, elem) {