JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-4.0_full
[ckeditor.git] / _source / core / dom / nodelist.js
diff --git a/_source/core/dom/nodelist.js b/_source/core/dom/nodelist.js
deleted file mode 100644 (file)
index b8d59a5..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/*\r
-Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.\r
-For licensing, see LICENSE.html or http://ckeditor.com/license\r
-*/\r
-\r
-/**\r
- * @class\r
- */\r
-CKEDITOR.dom.nodeList = function( nativeList )\r
-{\r
-       this.$ = nativeList;\r
-};\r
-\r
-CKEDITOR.dom.nodeList.prototype =\r
-{\r
-       count : function()\r
-       {\r
-               return this.$.length;\r
-       },\r
-\r
-       getItem : function( index )\r
-       {\r
-               var $node = this.$[ index ];\r
-               return $node ? new CKEDITOR.dom.node( $node ) : null;\r
-       }\r
-};\r