pandora/static/js/embedDocumentDialog.js

53 lines
1.3 KiB
JavaScript
Raw Normal View History

2013-04-26 08:44:25 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
'use strict';
pandora.ui.embedDocumentDialog = function(id) {
2013-04-26 08:44:25 +00:00
var $content = Ox.Element()
2013-04-26 08:44:25 +00:00
.css({margin: '16px'})
.html(Ox._('To embed this document, use the following HTML:')),
2013-04-26 08:44:25 +00:00
$embed = $('<textarea>')
.css({
width: '322px',
2013-04-26 08:44:25 +00:00
height: '64px',
marginTop: '8px'
2013-04-26 08:44:25 +00:00
})
.val(
'<a href="/documents/'
+ id + '"><img src="/documents/'
+ id + '/256p.jpg"></a>'
2013-04-26 08:44:25 +00:00
)
.on({
click: function() {
this.focus();
this.select();
}
})
.appendTo($content),
that = Ox.Dialog({
buttons: [
Ox.Button({
id: 'close',
2013-05-09 10:13:58 +00:00
title: Ox._('Close')
2013-04-26 08:44:25 +00:00
}).bindEvent({
click: function() {
that.close();
}
})
],
closeButton: true,
content: $content,
fixedSize: true,
height: 128,
keys: {escape: 'close'},
removeOnClose: true,
title: Ox._('Embed Document'),
2013-04-26 08:44:25 +00:00
width: 368
});
return that;
};