Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 428f985

Browse files
Display loading icon while fetching real row count.
Signed-off-by: Ashutosh Dhundhara <[email protected]>
1 parent c2b4c5e commit 428f985

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

js/db_structure.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,12 @@ function PMA_adjustTotals() {
139139
*/
140140
function PMA_fetchRealRowCount($target)
141141
{
142+
var $throbber = $('#pma_navigation .throbber')
143+
.first()
144+
.clone()
145+
.css({visibility: 'visible', display: 'inline-block'})
146+
.click(false);
147+
$target.html($throbber);
142148
$.ajax({
143149
type: 'GET',
144150
url: $target.attr('href'),

0 commit comments

Comments
 (0)