Remove unnecessary semicolons.
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
This commit is contained in:
parent
b8e6367b4c
commit
71999ae81f
@ -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,
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -389,7 +389,7 @@ AJAX.registerOnload('tbl_change.js', function () {
|
||||
* after initiation of functions
|
||||
*/
|
||||
extendingValidatorMessages();
|
||||
};
|
||||
}
|
||||
|
||||
$.datepicker.initialized = false;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user