This commit is contained in:
Bernhard Posselt 2016-01-21 23:31:28 +01:00
Родитель 109854e05c
Коммит e996b1e904
5 изменённых файлов: 10 добавлений и 10 удалений

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

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

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

@ -31,7 +31,7 @@ describe('ExploreController', function () {
scope = $rootScope.$new();
sites = {
data: [
]
};