X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/4dae03fed5ec90a39dea2473a3e3f0188df90ffe..b9558104eca9970ffba7f8e461e4878e70214114:/src/editor/modules/documentCanvas/canvas/documentElement.js
diff --git a/src/editor/modules/documentCanvas/canvas/documentElement.js b/src/editor/modules/documentCanvas/canvas/documentElement.js
index 3073e72..45592ef 100644
--- a/src/editor/modules/documentCanvas/canvas/documentElement.js
+++ b/src/editor/modules/documentCanvas/canvas/documentElement.js
@@ -102,7 +102,7 @@ $.extend(DocumentNodeElement.prototype, {
contentContainer = $('
')
.attr('document-element-content', '');
- wrapper.append(widgetsContainer, contentContainer);
+ wrapper.append(contentContainer, widgetsContainer);
widgetsContainer.find('*').add(widgetsContainer).attr('tabindex', -1);
return wrapper;
},
@@ -112,7 +112,6 @@ $.extend(DocumentNodeElement.prototype, {
detach: function() {
var parents = this.parents();
this.dom.detach();
- this.canvas = null;
if(parents[0]) {
parents[0].refreshPath();
}
@@ -133,6 +132,8 @@ $.extend(DocumentNodeElement.prototype, {
this.toggleHighlight(toggle);
},
+ markAsCurrent: function() {},
+
toggleHighlight: function(toggle) {
this._container().toggleClass('highlighted-element', toggle);
},
@@ -186,7 +187,6 @@ $.extend(DocumentTextElement.prototype, {
},
detach: function() {
this.dom.detach();
- this.canvas = null;
return this;
},
setText: function(text) {