friendica-addons/oembed/oembed.js

7 lines
175 B
JavaScript
Raw Normal View History

2011-09-25 10:56:03 +02:00
function oembed(){
var reply = prompt("$oembed_message:");
if(reply && reply.length) {
tinyMCE.execCommand('mceInsertRawHTML',false, "[embed]"+reply+"[/embed]" );
}
}