X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/2ee6a5d07d57b868eb91c59cb633732771f08b77..20ce93fdd697712c5b085145d85db9bb1b632f58:/modules/documentCanvas/canvas/documentElement.js diff --git a/modules/documentCanvas/canvas/documentElement.js b/modules/documentCanvas/canvas/documentElement.js index 637da5f..3f6a208 100644 --- a/modules/documentCanvas/canvas/documentElement.js +++ b/modules/documentCanvas/canvas/documentElement.js @@ -31,6 +31,18 @@ $.extend(DocumentElement.prototype, { toret.push(element); }); return toret; + }, + parent: function() { + return documentElementFromHTMLElement(this.$element.parent()[0]); + }, + + sameNode: function(other) { + return other && (typeof other === typeof this) && other.$element[0] === this.$element[0]; + }, + + wrapWithNodeElement: function(wlxmlNode) { + this.$element.wrap($('<' + wlxmlNode.tag + ' class="' + wlxmlNode.klass + '"">')[0]); + return documentElementFromHTMLElement(this.$element.parent().get(0)); } }); @@ -45,6 +57,23 @@ var DocumentTextElement = function(htmlElement) { DocumentNodeElement.prototype = new DocumentElement(); DocumentTextElement.prototype = new DocumentElement(); +$.extend(DocumentNodeElement.prototype, { + append: function(params) { + var to_append = $('<' + params.tag + '>'); + if(params.klass) + to_append.attr('class', params.klass); + this.$element.append(to_append); + return documentElementFromHTMLElement(to_append); + }, + after: function(params) { + var to_append = $('<' + params.tag + '>'); + if(params.klass) + to_append.attr('class', params.klass); + this.$element.after(to_append); + return documentElementFromHTMLElement(to_append); + } +}) + var documentElementFromHTMLElement = function(htmlElement) { if(htmlElement.nodeType === Node.ELEMENT_NODE) return new DocumentNodeElement(htmlElement);