diff --git a/static/js/editor.js b/static/js/editor.js index 19a9f99e..5d131c56 100644 --- a/static/js/editor.js +++ b/static/js/editor.js @@ -21,7 +21,6 @@ pandora.ui.editor = function(data) { censoredIcon: pandora.site.cantPlay.icon, censoredTooltip: Ox._(pandora.site.cantPlay.text), clickLink: pandora.clickLink, - confirmDeleteDialog: confirmDeleteDialog, cuts: data.cuts || [], duration: data.duration, enableDownload: pandora.hasCapability('canDownloadVideo') >= data.rightslevel || data.editable, @@ -443,44 +442,6 @@ pandora.ui.editor = function(data) { pandora._dontSelectResult = false; - function confirmDeleteDialog(options, callback) { - const subject = options.items.length == 1 ? Ox._('annotation') : Ox._('annotations') - const $dialog = pandora.ui.iconDialog({ - buttons: [ - Ox.Button({ - id: 'cancel', - title: Ox._('Cancel') - }) - .bindEvent({ - click: function() { - $dialog.close(); - } - }), - Ox.Button({ - id: 'delete', - title: Ox._('Delete') - }) - .bindEvent({ - click: function() { - $dialog.close(); - callback() - } - }) - ], - content: Ox._( - 'Are you sure you want delete {0} {1}', - [options.items.length, subject] - ), - height: 96, - keys: {enter: 'delete', escape: 'cancel'}, - title: Ox._( - 'Delete {0} {1}', [options.items.length, subject] - ) - }); - $dialog.open() - return $dialog - } - function getAnnotationById(id) { var annotation data.annotations.forEach(layer => { diff --git a/static/js/metadataDialog.js b/static/js/metadataDialog.js index 015ec833..3c0a718f 100644 --- a/static/js/metadataDialog.js +++ b/static/js/metadataDialog.js @@ -67,7 +67,7 @@ pandora.ui.metadataDialog = function(data) { 'To update the metadata for this {0}, please enter its IMDb ID.', [pandora.site.itemName.singular.toLowerCase()] ), - keys: {enter: 'update', escape: 'close'}, + keyboard: {enter: 'update', escape: 'close'}, title: Ox._('Update Metadata') }); }