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:
authorAtul Pratap Singh <atulpratapsingh05@gmail.com>2014-10-01 08:30:54 +0400
committerAtul Pratap Singh <atulpratapsingh05@gmail.com>2014-10-01 08:30:54 +0400
commita020eac11a26977295cf2439ddd2e5b4af2c88fe (patch)
treea25ad8d5dbfdc66f96321930dab50de9fe242e3b /js/indexes.js
parentdbdd90511bcb24fefcf2b88f12bd342d4abef9b2 (diff)
Add js checks in multiple files if data is undefined
Signed-off-by: Atul Pratap Singh <atulpratapsingh05@gmail.com>
Diffstat (limited to 'js/indexes.js')
-rw-r--r--js/indexes.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/indexes.js b/js/indexes.js
index b016f19463..59cf30cc65 100644
--- a/js/indexes.js
+++ b/js/indexes.js
@@ -135,7 +135,7 @@ AJAX.registerOnload('indexes.js', function () {
$anchor.PMA_confirm(question, $anchor.attr('href'), function (url) {
var $msg = PMA_ajaxShowMessage(PMA_messages.strDroppingPrimaryKeyIndex, false);
$.get(url, {'is_js_confirmed': 1, 'ajax_request': true}, function (data) {
- if (data.success === true) {
+ if (typeof data !== 'undefined' && data.success === true) {
PMA_ajaxRemoveMessage($msg);
var $table_ref = $rows_to_hide.closest('table');
if ($rows_to_hide.length == $table_ref.find('tbody > tr').length) {