Remove trailing whitespace in files I'm about to edit

This commit is contained in:
小太
2013-02-23 14:50:01 +11:00
parent c0257916b4
commit 97a5579d0d
2 changed files with 30 additions and 30 deletions

View File

@@ -2,27 +2,27 @@
Danbooru.meta = function(key) {
return $("meta[name=" + key + "]").attr("content");
}
Danbooru.notice = function(msg) {
$('#notice').html(msg).addClass("ui-state-highlight").removeClass("ui-state-error").fadeIn("fast");
}
Danbooru.error = function(msg) {
$('#notice').html(msg).removeClass("ui-state-highlight").addClass("ui-state-error").fadeIn("fast");
}
Danbooru.is_subset = function(array, subarray) {
var all = true;
$.each(subarray, function(i, val) {
if ($.inArray(val, array) === -1) {
all = false;
}
});
return all;
}
Danbooru.without = function(array, element) {
var temp = [];
$.each(array, function(i, v) {
@@ -32,7 +32,7 @@
});
return temp;
}
Danbooru.reject = function(array, f) {
var filtered = [];
$.each(array, function(i, x) {