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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2014-12-04 08:08:44 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2014-12-04 08:08:44 +0300
commitb7696eb5586810d09888385743894614ce94d07e (patch)
treedc6d4738ad699ddf1b11350bfedc31849fd7b104 /js/tbl_change.js
parent903c481242777fe95d5748b3a6fc1b4e81212e25 (diff)
.addBack( selector ) replaces .andSelf()
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'js/tbl_change.js')
-rw-r--r--js/tbl_change.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tbl_change.js b/js/tbl_change.js
index aac4324100..c1dd54113c 100644
--- a/js/tbl_change.js
+++ b/js/tbl_change.js
@@ -621,7 +621,7 @@ AJAX.registerOnload('tbl_change.js', function () {
while (curr_rows > target_rows) {
$("input[id^=insert_ignore]:last")
.nextUntil("fieldset")
- .andSelf()
+ .addBack()
.remove();
curr_rows--;
}