diff --git a/static/js/documentsPanel.js b/static/js/documentsPanel.js index 4a2d36b35..fa9485ec4 100644 --- a/static/js/documentsPanel.js +++ b/static/js/documentsPanel.js @@ -446,6 +446,12 @@ pandora.ui.documentsPanel = function(options) { openDocumentsDialog(); } + function getEmbed(item) { + return ''; + } + function getOrderButtonTitle() { return ui.documentsSort[0].operator == '+' ? 'up' : 'down'; } @@ -647,6 +653,15 @@ pandora.ui.documentsPanel = function(options) { type: 'textarea', value: item.description, width: width + }), + Ox.Input({ + disabled: true, + height: 36, + id: 'embed', + placeholder: Ox._('HTML Embed'), + type: 'textarea', + value: getEmbed(item), + width: width }) ], width: 240