body_class: 'page-content',
relative_urls: false,
statusbar: false,
- height: 600,
- plugins: "image table textcolor paste link imagetools",
- toolbar: "undo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | table image link | fontsizeselect full",
+ menubar: false,
+ height: 700,
+ plugins: "image table textcolor paste link imagetools fullscreen",
+ toolbar: "undo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | table image link | fontsizeselect fullscreen",
content_style: "body {padding-left: 15px !important; padding-right: 15px !important; margin:0!important; margin-left:auto!important;margin-right:auto!important;}",
file_browser_callback: function(field_name, url, type, win) {
ImageManager.show('#image-manager', function(image) {
win.document.getElementById(field_name).fireEvent("onchange");
}
});
- },
- setup: function(editor) {
- editor.addButton('full', {
- title: 'Expand Editor',
- icon: 'fullscreen',
- onclick: function() {
- var container = $(editor.getContainer()).toggleClass('fullscreen');
- var isFull = container.hasClass('fullscreen');
- var iframe = container.find('iframe').first();
- var height = isFull ? $(window).height()-110 : 600;
- iframe.css('height', height + 'px');
- }
- });
}
+// setup: function(editor) {
+// editor.addButton('full', {
+// title: 'Expand Editor',
+// icon: 'fullscreen',
+// onclick: function() {
+// var container = $(editor.getContainer()).toggleClass('fullscreen');
+// var isFull = container.hasClass('fullscreen');
+// var iframe = container.find('iframe').first();
+// var height = isFull ? $(window).height()-110 : 600;
+// iframe.css('height', height + 'px');
+// }
+// });
+// }
});