Removed inline call in libraries/display_tbl.lib.php to confirmAction()

for 'Calculate Real End' action on large InnoDB tables.
This commit is contained in:
ninadsp
2010-07-11 22:23:57 +05:30
parent 3586dd6408
commit 94a911a623
3 changed files with 16 additions and 2 deletions

View File

@@ -2034,6 +2034,19 @@ $(document).ready(function() {
})
//end Drop Primary Key/Index
//Calculate Real End for InnoDB
$('#real_end_input').live('click', function(event) {
event.preventDefault();
var question = PMA_messages['strOperationTakesLongTime'];
$(this).PMA_confirm(question, '', function() {
return true;
})
return false;
})
//end Calculate Real End for InnoDB
}, 'top.frame_content'); //end $(document).ready() for db_structure.php
/**