Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: wp-admin\images\loading-lg.gif
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
|
|
|
15 | 15 | |
16 | 16 | this.$tbody = $('#the-list, #the-comment-list'); |
17 | 17 | |
18 | | this.$overlay = $('<div id="loading-items">') |
19 | | .html(listTableL10n.loading) |
| 18 | this.$overlay = $('<div>') |
| 19 | .attr('id', 'loading-items') |
| 20 | .html('<span>' + listTableL10n.loading + '</span>') |
20 | 21 | .hide() |
21 | 22 | .prependTo($('body')); |
22 | 23 | }, |
… |
… |
|
53 | 54 | if ( !different ) |
54 | 55 | return false; |
55 | 56 | |
| 57 | scrollTo(0, 0); |
| 58 | |
56 | 59 | this.show_overlay(); |
57 | 60 | |
58 | 61 | if ( reset_paging ) |
… |
… |
|
131 | 134 | |
132 | 135 | this.$overlay |
133 | 136 | .css({ |
134 | | width: this.$tbody.width() + 'px', |
135 | | height: this.$tbody.height() - 20 + 'px' |
| 137 | width: this.$tbody.outerWidth(true) + 'px', |
| 138 | height: this.$tbody.outerHeight(true) + 'px' |
136 | 139 | }) |
137 | 140 | .css(this.$tbody.offset()) |
138 | 141 | .show(); |
… |
… |
|
155 | 158 | if ( paged > listTable.get_total_pages() ) |
156 | 159 | paged = listTable.get_total_pages(); |
157 | 160 | |
158 | | listTable.update_rows({'paged': paged}, false, function() { |
159 | | if ( $el.parents('.tablenav.bottom').length ) |
160 | | scrollTo(0, 0); |
161 | | }); |
| 161 | listTable.update_rows({'paged': paged}, false); |
162 | 162 | } |
163 | 163 | |
164 | 164 | // pagination |