fix(core): fixed eslint error

This commit is contained in:
OldHawk
2018-01-18 18:47:22 +08:00
parent 83c0724740
commit 0aa3eca420
2 changed files with 5 additions and 3 deletions

View File

@@ -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) {

View File

@@ -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;
}
}
}
/* csslint ignore:end */