Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshutosh Dhundhara <ashutoshdhundhara@yahoo.com>2014-06-03 11:39:33 +0400
committerAshutosh Dhundhara <ashutoshdhundhara@yahoo.com>2014-06-03 11:39:33 +0400
commit428f9850703dc7a7d89b14af3f3540b540965327 (patch)
tree0b341f02a0dea1aaba60ee5dd897bba50357c3c8 /js/db_structure.js
parentc2b4c5e7c7337162638eeea4c81e673551d292af (diff)
Display loading icon while fetching real row count.
Signed-off-by: Ashutosh Dhundhara <ashutoshdhundhara@yahoo.com>
Diffstat (limited to 'js/db_structure.js')
-rw-r--r--js/db_structure.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/js/db_structure.js b/js/db_structure.js
index 51671b64e3..6145486f3e 100644
--- a/js/db_structure.js
+++ b/js/db_structure.js
@@ -139,6 +139,12 @@ function PMA_adjustTotals() {
*/
function PMA_fetchRealRowCount($target)
{
+ var $throbber = $('#pma_navigation .throbber')
+ .first()
+ .clone()
+ .css({visibility: 'visible', display: 'inline-block'})
+ .click(false);
+ $target.html($throbber);
$.ajax({
type: 'GET',
url: $target.attr('href'),