diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2014-05-13 15:22:46 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-06-02 12:53:59 +0200 |
commit | 7b63c2c0362a54218841d548c2cafb5bc417a0db (patch) | |
tree | 481587cecb0b51fe6e5bb39fcca6f10313747090 /settings | |
parent | a9e8d53c8f0335ffdfac32b80a251edc07b89c18 (diff) | |
download | nextcloud-server-7b63c2c0362a54218841d548c2cafb5bc417a0db.tar.gz nextcloud-server-7b63c2c0362a54218841d548c2cafb5bc417a0db.zip |
cleanup
Diffstat (limited to 'settings')
-rw-r--r-- | settings/js/users/deleteHandler.js | 4 | ||||
-rw-r--r-- | settings/js/users/groups.js | 1 | ||||
-rw-r--r-- | settings/js/users/users.js | 1 |
3 files changed, 0 insertions, 6 deletions
diff --git a/settings/js/users/deleteHandler.js b/settings/js/users/deleteHandler.js index 58017dd91a6..48c7f149928 100644 --- a/settings/js/users/deleteHandler.js +++ b/settings/js/users/deleteHandler.js @@ -74,7 +74,6 @@ DeleteHandler.prototype.showNotification = function() { $('#notification').data(this.notificationDataID, true); var msg = this.notificationMessage.replace(this.notificationPlaceholder, this.oidToDelete); - console.log('NOTISHOW ' + msg); this.notifier.showHtml(msg); } }; @@ -123,10 +122,8 @@ DeleteHandler.prototype.delete = function() { } var dh = this; - console.log($('#notification').data(this.notificationDataID)); if($('#notification').data(this.notificationDataID) === true) { dh.hideNotification(); - console.log('HIDDEN NOTI'); } var payload = {}; @@ -143,7 +140,6 @@ DeleteHandler.prototype.delete = function() { //TODO: following line dh.removeCallback(dh.oidToDelete); dh.canceled = true; - console.log(dh.ajaxEndpoint); } else { OC.dialogs.alert(result.data.message, t('settings', 'Unable to delete ' + escapeHTML(dh.oidToDelete))); dh.undoCallback(dh.oidToDelete); diff --git a/settings/js/users/groups.js b/settings/js/users/groups.js index d7642743548..c3b8cc6a081 100644 --- a/settings/js/users/groups.js +++ b/settings/js/users/groups.js @@ -210,7 +210,6 @@ GroupList = { GroupDeleteHandler.mark(GroupList.getElementGID(this)); }); - console.log('init del groups'); //delete a marked user when leaving the page $(window).on('beforeunload', function () { GroupDeleteHandler.delete(); diff --git a/settings/js/users/users.js b/settings/js/users/users.js index 48586b485d5..68098e03a50 100644 --- a/settings/js/users/users.js +++ b/settings/js/users/users.js @@ -264,7 +264,6 @@ var UserList = { }); //delete a marked user when leaving the page - console.log('init del users'); $(window).on('beforeunload', function () { UserDeleteHandler.delete(); }); |