smartxml: linting
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Tue, 26 Nov 2013 13:10:16 +0000 (14:10 +0100)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Tue, 26 Nov 2013 13:10:16 +0000 (14:10 +0100)
src/smartxml/smartxml.js
src/smartxml/smartxml.test.js

index 5004863..9f060e8 100644 (file)
@@ -6,7 +6,7 @@ define([
 ], function($, _, Backbone, events) {
     
 'use strict';
-
+/* globals Node */
 
 var TEXT_NODE = Node.TEXT_NODE;
 
@@ -437,6 +437,7 @@ $.extend(Document.prototype, Backbone.Events, {
     createDocumentNode: function(from) {
         if(!(from instanceof Node)) {
             if(from.text !== undefined) {
+                /* globals document */
                 from = document.createTextNode(from.text);
             } else {
                 var node = $('<' + from.tagName + '>');
index 289b982..a4ceaa4 100644 (file)
@@ -6,7 +6,7 @@ define([
     
 'use strict';
 /*jshint expr:true */
-/* global describe, it, beforeEach */
+/* global describe, it, beforeEach, Node, DOMParser */
 
 var expect = chai.expect;