Dodanie panelu htmleditor.
[redakcja.git] / project / templates / explorer / panels / xmleditor.html
index 356b76c..f8d3fef 100644 (file)
@@ -1,14 +1,15 @@
 <div class="panel">
-    <textarea name="text" width="480px"><ala><ma></ma></ala></textarea>
+    <textarea name="text" width="480px">{{ text }}</textarea>
 </div>
 <script type="text/javascript" charset="utf-8">
     (function() {
-        var self = null;
-        var id = Math.ceil(Math.random() * 1000000000);
+        function resizeEditor(event, panel) {
+            var panel = panel || event.data.panel;
+            $('iframe', panel).height($(panel).height());
+        }
         
-        var load = function(event, panel) {
+        panel(function(event, panel) {
             console.log('loading panel', panel);
-            self = panel;
             var textareaId = 'xmleditor-' + Math.ceil(Math.random() * 1000000000);
             $('textarea', panel).attr('id', textareaId);
             var editor = CodeMirror.fromTextArea(textareaId, {
                 parserConfig: {useHTMLKludges: false},
                 initCallback: function() {}
             })
-            $(document).unbind('panel:load.' + id, load);
-        }
-        
-        var unload = function(event, panel) {
-            console.log('unload event!', panel, self);
-            if (panel == self) {
-                console.log('unloading panel', self);
-                $(document).unbind('panel:unload.' + id, unload);
-            }
-        };
-        
-        $(document).bind('panel:load.' + id, load);
-        $(document).bind('panel:unload.' + id, unload);
+            $(window).bind('resize', {'panel': panel}, resizeEditor);
+            resizeEditor(null, panel);
+        }, function(event, panel) {
+            console.log('unloaded xmleditor panel', panel);
+        })
     })();
 </script>