diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-11-15 16:26:36 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-11-15 16:26:36 +0100 |
commit | 132163d4ec2c7758afb82071af2b3c68965e2c4d (patch) | |
tree | 7e92c75d71489556c2878efd4e714f11a1317161 /phpBB/adm/style/ajax.js | |
parent | e39947e57e8b39319bb34597d2fb0a706bd1bc44 (diff) | |
download | forums-132163d4ec2c7758afb82071af2b3c68965e2c4d.tar forums-132163d4ec2c7758afb82071af2b3c68965e2c4d.tar.gz forums-132163d4ec2c7758afb82071af2b3c68965e2c4d.tar.bz2 forums-132163d4ec2c7758afb82071af2b3c68965e2c4d.tar.xz forums-132163d4ec2c7758afb82071af2b3c68965e2c4d.zip |
[ticket/11198] Remove additional asterix as /** is doc-block only
PHPBB3-11198
Diffstat (limited to 'phpBB/adm/style/ajax.js')
-rw-r--r-- | phpBB/adm/style/ajax.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/adm/style/ajax.js b/phpBB/adm/style/ajax.js index d780196173..a3a77df89b 100644 --- a/phpBB/adm/style/ajax.js +++ b/phpBB/adm/style/ajax.js @@ -20,7 +20,7 @@ phpbb.add_ajax_callback('row_down', function() { tr = el.parents('tr'), tr_swap = tr.next(); - /** + /* * If the element was the first one, we have to: * - Add the up-link to the row we moved * - Remove the up-link on the next row @@ -41,7 +41,7 @@ phpbb.add_ajax_callback('row_down', function() { tr.insertAfter(tr_swap); - /** + /* * As well as: * - Remove the down-link on the moved row, if it is now the last row * - Add the down-link to the next row, if it was the last row @@ -66,7 +66,7 @@ phpbb.add_ajax_callback('row_up', function() { tr = el.parents('tr'), tr_swap = tr.prev(); - /** + /* * If the element was the last one, we have to: * - Add the down-link to the row we moved * - Remove the down-link on the next row @@ -87,7 +87,7 @@ phpbb.add_ajax_callback('row_up', function() { tr.insertBefore(tr_swap); - /** + /* * As well as: * - Remove the up-link on the moved row, if it is now the first row * - Add the up-link to the previous row, if it was the first row |