diff --git a/modules/core/client/directives/torrent-image-list.client.directive.js b/modules/core/client/directives/torrent-image-list.client.directive.js index 366b0466..c84c1bba 100644 --- a/modules/core/client/directives/torrent-image-list.client.directive.js +++ b/modules/core/client/directives/torrent-image-list.client.directive.js @@ -20,11 +20,11 @@ var targetNode = element[0]; var config = {childList: true}; var callback = function (mutationsList) { - for (var mutation of mutationsList) { + angular.forEach(mutationsList, function (mutation) { if (mutation.type === 'childList') { organizeImage(); } - } + }); }; if (til) { diff --git a/modules/torrents/client/less/torrents.less b/modules/torrents/client/less/torrents.less index 565aa037..bde17008 100644 --- a/modules/torrents/client/less/torrents.less +++ b/modules/torrents/client/less/torrents.less @@ -65,6 +65,7 @@ } } +/* csslint ignore:start */ .film-strip { border-top: solid 26px; border-bottom: solid 26px; @@ -90,4 +91,5 @@ &::-webkit-scrollbar-thumb { background-color: #555; } -} \ No newline at end of file +} +/* csslint ignore:end */