style: drop redundant semicolons after function declarations (filegen templates + static js)
This commit is contained in:
parent
1491db51e3
commit
1c88254a06
18 changed files with 33 additions and 33 deletions
|
|
@ -2289,7 +2289,7 @@ function TalentCalc() {
|
|||
_setPoints(basePoints, -1);
|
||||
_setGlyphSlots(lvl);
|
||||
_refreshGlyphs();
|
||||
};
|
||||
}
|
||||
|
||||
function _setLock(locked) {
|
||||
if (_locked != locked) {
|
||||
|
|
|
|||
|
|
@ -100,4 +100,4 @@ function updateSnippet() {
|
|||
$("#snippet").val(a)
|
||||
}
|
||||
})
|
||||
};
|
||||
}
|
||||
|
|
@ -16,4 +16,4 @@ function ar_ValidateUrl(a) {
|
|||
else {
|
||||
return "You used invalid characters in your URL.\n\nYou can only use the following:\n a to z\n 0 to 9\n = _ & . / -"
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -81,4 +81,4 @@ function updatePlaceholder() {
|
|||
else
|
||||
$("#description").text(data);
|
||||
})
|
||||
};
|
||||
}
|
||||
|
|
@ -553,7 +553,7 @@ $WH.eO = function(z) {
|
|||
|
||||
// Duplicate object
|
||||
$WH.dO = function(s) {
|
||||
function f(){};
|
||||
function f(){}
|
||||
f.prototype = s;
|
||||
return new f;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1367,7 +1367,7 @@ qq.extend(qq.UploadHandlerXhr.prototype, {
|
|||
}
|
||||
for (key in this._options.customHeaders){
|
||||
xhr.setRequestHeader(key, this._options.customHeaders[key]);
|
||||
};
|
||||
}
|
||||
xhr.send(file);
|
||||
},
|
||||
_onComplete: function(id, xhr){
|
||||
|
|
|
|||
|
|
@ -88,4 +88,4 @@ function ma_UpdateLink(_) {
|
|||
}
|
||||
|
||||
$WH.ge('link-to-this-map').href = b;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -119,4 +119,4 @@ function pc_readPound() {
|
|||
pc_object.setWhBuild(pc_build);
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -588,7 +588,7 @@ function pr_addEquipButton(id, itemId)
|
|||
|
||||
$('#' + id).append(button);
|
||||
|
||||
return;
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -143,4 +143,4 @@ function tc_readPound() {
|
|||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -165,7 +165,7 @@ Listview.funcBox.beforeUserComments = function()
|
|||
}).bind(this);
|
||||
$WH.ae(d, i);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
this.customFilter = function (comment, i)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -801,7 +801,7 @@ function () {
|
|||
if (!resizing) {
|
||||
// aowow - /uploads/videos/ not seen on server
|
||||
// aOriginal.href = g_staticUrl + '/uploads/videos/' + (video.pending ? 'pending' : 'normal') + '/' + video.id + '.jpg';
|
||||
aOriginal.href = $WH.sprintf(vi_siteurls[video.videoType], video.videoId);;
|
||||
aOriginal.href = $WH.sprintf(vi_siteurls[video.videoType], video.videoId);
|
||||
var hasFrom = video.date && video.user;
|
||||
if (hasFrom) {
|
||||
var
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue