X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/cb87c787916de7712a4f9fb638715e6185804711..300def05b91611b2382df4837c0041d231c8b432:/project/templates/explorer/panels/xmleditor.html diff --git a/project/templates/explorer/panels/xmleditor.html b/project/templates/explorer/panels/xmleditor.html index 81153085..c818550e 100644 --- a/project/templates/explorer/panels/xmleditor.html +++ b/project/templates/explorer/panels/xmleditor.html @@ -1,55 +1,93 @@ {% load toolbar_tags %} -{% toolbar %} -
+ +
+
A-
+
A+
+
+ +
+ +{% toolbar %} + - + + $(texteditor.frame).css({width: '100%', height: '100%'}); + + $('#toolbar-buttons li').wTooltip({ + delay: 1000, + style: { + border: "1px solid #7F7D67", + opacity: 0.9, + background: "#FBFBC6", + padding: "1px", + fontSize: "12px" + } + }); + + $('.decrease-font-size', panel).click(function() { + var frameBody = $('body', $(texteditor.frame).contents()); + console.log(frameBody.css('font-size')); + frameBody.css('font-size', parseInt(frameBody.css('font-size')) - 2); + }); + + $('.increase-font-size', panel).click(function() { + var frameBody = $('body', $(texteditor.frame).contents()); + console.log(frameBody.css('font-size')); + frameBody.css('font-size', parseInt(frameBody.css('font-size')) + 2); + }); + this.texteditor = texteditor; + }, + + unload: function() { + this.texteditor = null; + }, + + + //refresh: function() { }, // no support for refresh + + saveInfo: function(saveInfo) { + var myInfo = { + url: "{% url file_xml fpath %}", + postData: { + content: this.texteditor.getCode() + } + }; + $.extend(saveInfo, myInfo); + } +}; + +