diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-07-17 13:13:03 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-07-17 13:13:03 +0200 |
commit | 4d5ebe61c4f88f001fef1a6b1185a7856c086c7e (patch) | |
tree | db41a1ae20f152f3d9013be1fb8cea95a5f2224d /settings/js/users/groups.js | |
parent | d58c8d72cf8c0f6784bdec1f054c24a78ff131b6 (diff) | |
download | nextcloud-server-4d5ebe61c4f88f001fef1a6b1185a7856c086c7e.tar.gz nextcloud-server-4d5ebe61c4f88f001fef1a6b1185a7856c086c7e.zip |
Fixed JS and CSS issues in users page
- Renamed "delete" to "deleteEntry" to make IE8 happy.
- Added missing "svg" class for the "+" button
- Added height to "+" button but was unable to properly align it
Diffstat (limited to 'settings/js/users/groups.js')
-rw-r--r-- | settings/js/users/groups.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/users/groups.js b/settings/js/users/groups.js index b4cf73c59f2..58f77705121 100644 --- a/settings/js/users/groups.js +++ b/settings/js/users/groups.js @@ -237,7 +237,7 @@ GroupList = { //delete a marked user when leaving the page $(window).on('beforeunload', function () { - GroupDeleteHandler.delete(); + GroupDeleteHandler.deleteEntry(); }); }, |