diff options
Diffstat (limited to 'static/functions/user.js')
-rw-r--r-- | static/functions/user.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static/functions/user.js b/static/functions/user.js index f5a2856..b9013f1 100644 --- a/static/functions/user.js +++ b/static/functions/user.js @@ -4,7 +4,7 @@ function ChangeTo(to) { $('#admincomment').show(); resize('admincomment'); var buttons = document.getElementsByName('admincommentbutton'); - for(var i = 0; i < buttons.length; i++) { + for (var i = 0; i < buttons.length; i++) { buttons[i].setAttribute('onclick',"ChangeTo('links'); return false;"); } } else if (to == "links") { @@ -13,7 +13,7 @@ function ChangeTo(to) { $('#admincomment').hide(); $('#admincommentlinks').show(); var buttons = document.getElementsByName('admincommentbutton'); - for(var i = 0; i < buttons.length; i++) { + for (var i = 0; i < buttons.length; i++) { buttons[i].setAttribute('onclick',"ChangeTo('text'); return false;"); } }) |