smartxml: refactoring - one node creation method
[fnpeditor.git] / src / wlxml / wlxml.js
index 0f6fa20..9b852ae 100644 (file)
@@ -1,6 +1,7 @@
 define([
 define([
+    'libs/jquery',
     'smartxml/smartxml'
     'smartxml/smartxml'
-], function(smartxml) {
+], function($, smartxml) {
     
 'use strict';
 
     
 'use strict';
 
@@ -105,7 +106,7 @@ $.extend(WLXMLDocument.prototype, {
     ElementNodeFactory: WLXMLElementNode,
 
     loadXML: function(xml) {
     ElementNodeFactory: WLXMLElementNode,
 
     loadXML: function(xml) {
-        smartxml.Document.prototype.loadXML.call(this, xml);
+        smartxml.Document.prototype.loadXML.call(this, xml, {silent: true});
         $(this.dom).find(':not(iframe)').addBack().contents()
             .filter(function() {return this.nodeType === Node.TEXT_NODE;})
             .each(function() {
         $(this.dom).find(':not(iframe)').addBack().contents()
             .filter(function() {return this.nodeType === Node.TEXT_NODE;})
             .each(function() {