Add missing quote char when creating overlay. See #14579. See #15580

git-svn-id: https://develop.svn.wordpress.org/trunk@16616 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
scribu
2010-11-29 19:08:15 +00:00
parent d04ab8e50b
commit 41162fb44d
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -15,7 +15,7 @@ window.listTable = {
this.$tbody = $('#the-list, #the-comment-list');
this.$overlay = $('<div id="loading-items>')
this.$overlay = $('<div id="loading-items">')
.html(listTableL10n.loading)
.hide()
.prependTo($('body'));
@@ -109,8 +109,8 @@ window.listTable = {
$('th.column-cb :input').attr('checked', false);
if ( window.history.replaceState ) {
window.history.replaceState({}, '', window.location.pathname + $.query);
if ( history.replaceState ) {
history.replaceState({}, '', location.pathname + $.query);
}
if ( this._callback )
@@ -154,7 +154,7 @@ listTable.init();
listTable.update_rows({'paged': paged}, false, function() {
if ( $el.parents('.tablenav.bottom').length )
window.scrollTo(0, 0);
scrollTo(0, 0);
});
}