phpstorm tidying

This commit is contained in:
Shish
2015-09-12 11:43:28 +01:00
parent 6c304420a6
commit 35a4f385b3
66 changed files with 82 additions and 98 deletions

View File

@ -3,7 +3,7 @@
$(function() {
var blocked_tags = ($.cookie("ui-blocked-tags") || "").split(" ");
var needs_refresh = false;
for(i=0; i<blocked_tags.length; i++) {
for(var i=0; i<blocked_tags.length; i++) {
var tag = blocked_tags[i];
if(tag) {
$(".shm-thumb[data-tags~='"+tag+"']").hide();