2012-09-26 21:13:11 +02:00
|
|
|
|
2012-09-15 17:38:59 +02:00
|
|
|
tinyMCE.init({
|
|
|
|
// General options
|
|
|
|
mode : "textareas",
|
|
|
|
theme : "advanced",
|
2012-11-13 18:33:38 +01:00
|
|
|
plugins : "autolink,lists,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,dynastiecolor",
|
2012-09-15 17:38:59 +02:00
|
|
|
editor_selector : "mceAdvanced",
|
|
|
|
encoding : "raw",
|
|
|
|
entities : "",
|
|
|
|
entity_encoding : "raw",
|
2012-11-13 18:33:38 +01:00
|
|
|
valid_elements : '*[*]',
|
|
|
|
preformatted : true,
|
2012-09-15 17:38:59 +02:00
|
|
|
|
|
|
|
// Theme options
|
|
|
|
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,formatselect,fontselect,fontsizeselect",
|
|
|
|
theme_advanced_buttons2 : "bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
|
2012-11-13 18:33:38 +01:00
|
|
|
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,charmap,emotions,iespell,media,advhr,dynastiecolor",
|
2012-09-15 17:38:59 +02:00
|
|
|
// theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage",
|
|
|
|
theme_advanced_toolbar_location : "top",
|
|
|
|
theme_advanced_toolbar_align : "left",
|
|
|
|
theme_advanced_statusbar_location : "bottom",
|
|
|
|
theme_advanced_resizing : true,
|
2012-09-26 21:13:11 +02:00
|
|
|
width: "60%",
|
|
|
|
height: "400",
|
|
|
|
|
|
|
|
external_image_list_url : external_list,
|
2012-09-15 17:38:59 +02:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2012-11-08 21:23:30 +01:00
|
|
|
function previewPost(blog_id)
|
2012-09-15 17:38:59 +02:00
|
|
|
{
|
|
|
|
var w = (screen.width * 80)/100;
|
|
|
|
var h = (screen.height * 80)/100;
|
|
|
|
var t = (screen.height - h) / 2;
|
|
|
|
var l = (screen.width - w) / 2;
|
|
|
|
var form = document.getElementById("previewForm");
|
|
|
|
var action = form.action;
|
|
|
|
var target = form.target;
|
|
|
|
|
|
|
|
form.action="/preview/" + blog_id;
|
|
|
|
form.target="PreviewPost";
|
|
|
|
|
|
|
|
window.open('/preview', 'PreviewPost', 'width=w, height=h, resizable=yes, scrollbars=yes, location=no, directories=no, status=yes, menubar=no, copyhistory=no, screenX=l, screenY=t');
|
|
|
|
|
|
|
|
form.submit();
|
|
|
|
form.action = action;
|
|
|
|
form.target = target;
|
|
|
|
}
|