Kill trailing whitespaces in javascript files

This commit is contained in:
小太
2013-03-19 23:09:22 +11:00
parent 35f1304157
commit c107f96cec
25 changed files with 128 additions and 128 deletions

View File

@@ -57,12 +57,12 @@
}
});
}
Danbooru.Blacklist.update_sidebar = function() {
if (this.blacklists.length > 0) {
this.blacklists.unshift({"tags": "~all~", "hits": -1});
}
$.each(this.blacklists, function(i, blacklist) {
if (blacklist.hits === 0) {
return;
@@ -71,7 +71,7 @@
var item = $("<li/>");
var link = $("<a/>");
var count = $("<span/>");
if (blacklist.tags === "~all~") {
link.html("All");
link.click(Danbooru.Blacklist.toggle_all);
@@ -85,7 +85,7 @@
item.append(" ");
item.append(count);
}
$("#blacklist-list").append(item);
});