2 'libs/jquery-1.9.1.min',
3 'modules/documentCanvas/canvas/documentElement'
4 ], function($, documentElement) {
8 var Canvas = function(xml) {
10 this.d = xml !== null ? $(xml.childNodes[0]) : null;
13 $.extend(Canvas.prototype, {
18 return documentElement.wrap(this.d.get(0)); //{wlxmlTag: this.d.prop('tagName')};
24 fromXML: function(xml) {
25 return new Canvas(xml);