Remove unnecessary semicolons.

Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
This commit is contained in:
Hugues Peccatte 2015-07-20 23:56:51 +02:00
parent b8e6367b4c
commit 71999ae81f
4 changed files with 5 additions and 5 deletions

View File

@ -19,7 +19,7 @@ function showSettings(selector) {
};
// Keeping a clone to restore in case the user cancels the operation
var $clone = $(selector + ' .page_settings').clone(true);;
var $clone = $(selector + ' .page_settings').clone(true);
$(selector)
.dialog({
title: PMA_messages.strPageSettings,

View File

@ -182,7 +182,7 @@ function MouseMove(e)
if (ON_grid) {
new_x = parseInt(new_x / grid_size) * grid_size;
new_y = parseInt(new_y / grid_size) * grid_size;
};
}
$cur_click.css('left', new_x + 'px');
$cur_click.css('top', new_y + 'px');
@ -1535,7 +1535,7 @@ function No_have_constr(id_this)
if (id_this.alt == 'v') {
id_this.alt = '>';
id_this.src = id_this.dataset.right;;
id_this.src = id_this.dataset.right;
} else {
id_this.alt = 'v';
id_this.src = id_this.dataset.down;

View File

@ -174,7 +174,7 @@ RTE.COMMON = {
} else {
PMA_ajaxShowMessage(data.error, false);
}
}; // end showExport()
} // end showExport()
}, // end exportDialog()
editorDialog: function (is_new, $this) {
var that = this;

View File

@ -389,7 +389,7 @@ AJAX.registerOnload('tbl_change.js', function () {
* after initiation of functions
*/
extendingValidatorMessages();
};
}
$.datepicker.initialized = false;