diff --git a/static/js/pandora/folderList.js b/static/js/pandora/folderList.js index 0f67089ea..1a1fb88d9 100644 --- a/static/js/pandora/folderList.js +++ b/static/js/pandora/folderList.js @@ -302,7 +302,6 @@ pandora.ui.folderList = function(id) { } else if (data.key == 'status') { var status = that.value(data.id, data.key) == 'private' ? 'public' : 'private'; pandora.changeListStatus(data.id, status, function(result) { - Ox.print('cLS', result.data); that.value(result.data.id, 'status', result.data.status); }); } else if (data.key == 'path') { diff --git a/static/js/pandora/infoView.js b/static/js/pandora/infoView.js index e01262d63..83fc06732 100644 --- a/static/js/pandora/infoView.js +++ b/static/js/pandora/infoView.js @@ -784,7 +784,6 @@ pandora.ui.infoView = function(data) { change: function(event) { var rightsLevel = event.value $rightsLevelElement = getRightsLevelElement(rightsLevel); - Ox.print(rightsLevel, '...', $rightsLevelElement) $rightsLevelSelect .css({background: $rightsLevelElement.css('background')}) .data({OxColor: $rightsLevelElement.data('OxColor')}) diff --git a/static/js/pandora/usersDialog.js b/static/js/pandora/usersDialog.js index c6528fc9d..54e85f706 100644 --- a/static/js/pandora/usersDialog.js +++ b/static/js/pandora/usersDialog.js @@ -736,7 +736,6 @@ pandora.ui.usersDialog = function() { function setHeight(data) { var form = $formButton.value(), $item = getFormItemById(form == 'edit' ? 'notes' : 'message'); - Ox.print('$ITEM', $item) dialogHeight = data.height; $item && $item.options({ height: dialogHeight - (form == 'edit' ? 160 : 208)