{% load toolbar_tags %}
+{% toolbar toolbar_groups toolbar_extra_group %}
<div class="iframe-container" style="position: absolute; top: 40px; left:0px; right:0px; bottom: 0px;">
<textarea name="text">{{ text }}</textarea>
</div>
-{% toolbar %}
-
<script type="text/javascript" charset="utf-8">
-
panel_hooks = {
load: function () {
var self = this;
$(texteditor.frame).css({width: '100%', height: '100%'});
this.texteditor = texteditor;
+ self._endload();
},
unload: function() {
saveInfo: function(saveInfo) {
var myInfo = {
- url: "{% url file_xml fpath %}",
+ url: "{% url file_xml fileid %}",
postData: {
content: this.texteditor.getCode()
}
},
toolbarResized: function() {
- $('.iframe-container', self.contentDiv).css('top',
- $('.toolbar', self.contentDiv).outerHeight() );
+ $('.iframe-container', this.contentDiv).css('top',
+ $('.toolbar', this.contentDiv).outerHeight() );
}
};