diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-04 23:38:07 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-04 23:38:07 +0100 |
commit | b5d1dfcdc91e9192b50752714b5beeda49bbeadf (patch) | |
tree | f60865589ea36308a12eaf80da9d7d8b6ad26da3 | |
parent | 594d388ad9121c2c2808e83ca77513390853a355 (diff) | |
download | nextcloud-server-b5d1dfcdc91e9192b50752714b5beeda49bbeadf.tar.gz nextcloud-server-b5d1dfcdc91e9192b50752714b5beeda49bbeadf.zip |
javascript syntax error fixed on the way
-rw-r--r-- | settings/js/users.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/js/users.js b/settings/js/users.js index a01b4cab952..2ccb56ab0e3 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -195,7 +195,7 @@ var UserList = { checked:checked, oncheck:checkHandeler, onuncheck:checkHandeler, - minWidth:100, + minWidth:100 }); } if ($(element).attr('class') == 'subadminsselect') { @@ -230,7 +230,7 @@ var UserList = { checked:checked, oncheck:checkHandeler, onuncheck:checkHandeler, - minWidth:100, + minWidth:100 }); } } @@ -387,7 +387,7 @@ $(document).ready(function () { { username:username, password:password, - groups:groups, + groups:groups }, function (result) { if (result.status != 'success') { |