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:
authorRouslan Placella <rouslan@placella.com>2013-06-12 19:02:06 +0400
committerRouslan Placella <rouslan@placella.com>2013-06-12 19:02:06 +0400
commit93dd3214377de782ec2eabc667a018b6ce215b9c (patch)
tree7800d27296191ac2b6873c9c3fb22dca818b0f0f /js/tbl_structure.js
parent1c0840ceae3e9a462c98d04fe059c02e2042b367 (diff)
JSlint fixes
Diffstat (limited to 'js/tbl_structure.js')
-rw-r--r--js/tbl_structure.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/tbl_structure.js b/js/tbl_structure.js
index 9ea8d5f1bf..3f45583d2f 100644
--- a/js/tbl_structure.js
+++ b/js/tbl_structure.js
@@ -54,7 +54,7 @@ AJAX.registerOnload('tbl_structure.js', function () {
/**
*Ajax action for submitting the "Column Change" and "Add Column" form
*/
- $(".append_fields_form.ajax").die().live('submit', function(event) {
+ $(".append_fields_form.ajax").die().live('submit', function (event) {
event.preventDefault();
/**
* @var the_form object referring to the export form
@@ -73,7 +73,7 @@ AJAX.registerOnload('tbl_structure.js', function () {
PMA_prepareForAjaxRequest($form);
//User wants to submit the form
$msg = PMA_ajaxShowMessage();
- $.post($form.attr('action'), $form.serialize() + '&do_save_data=1', function(data) {
+ $.post($form.attr('action'), $form.serialize() + '&do_save_data=1', function (data) {
if ($("#sqlqueryresults").length != 0) {
$("#sqlqueryresults").remove();
} else if ($(".error:not(.tab)").length != 0) {