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
path: root/js/pmd
diff options
context:
space:
mode:
authorHugues Peccatte <hugues.peccatte@gmail.com>2015-07-21 00:56:51 +0300
committerHugues Peccatte <hugues.peccatte@gmail.com>2015-07-21 00:56:51 +0300
commit71999ae81f1468002c629e30bc1ade698a6dcf68 (patch)
tree1415c5a695dc7b8206e732d2d93d1cf406d5512f /js/pmd
parentb8e6367b4ce41ef66911cc813fed7d6d8676e7de (diff)
Remove unnecessary semicolons.
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
Diffstat (limited to 'js/pmd')
-rw-r--r--js/pmd/move.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/pmd/move.js b/js/pmd/move.js
index 4fb219b1a1..210f9c6ade 100644
--- a/js/pmd/move.js
+++ b/js/pmd/move.js
@@ -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;