Fix warning: 'value', 'index' is defined but never used.

This commit is contained in:
Štefan Baebler 2018-03-20 01:52:54 +01:00
parent 15ea756ae6
commit 26b47fdd18

View file

@ -335,7 +335,7 @@ $(document).ready(function () {
}
});
$('.colour-preview-box').each(function (index, value) {
$('.colour-preview-box').each(function () {
$(this).css("background-color", $(this).data("colour"));
});
}