blob: 90054de2dc01c4ac2650556384c0552b8931d4d2 (
plain)
1
2
3
4
5
6
7
8
|
function add_images(){
var el = document.getElementById("id_body_markdown");
var iframe = '<iframe frameborder="0" style="border: #dddddd 1px solid;margin-left: 20px;width:330px; height:720px;" src="/luximages/insert/?textarea='+el.id+'"></iframe>';
el.insertAdjacentHTML('afterend', iframe);
}
document.addEventListener("DOMContentLoaded", function(event) {
add_images();
});
|