X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fcore%2Fdom%2Fnodelist.js;fp=_source%2Fcore%2Fdom%2Fnodelist.js;h=0000000000000000000000000000000000000000;hb=4625dba05116026713fee9008dd93306be0d1553;hp=b8d59a5872ae0db9b45b1d225708bff88cecd414;hpb=3fe9cac293e090ea459a3ee10d78cbe9e1dd0e03;p=ckeditor.git diff --git a/_source/core/dom/nodelist.js b/_source/core/dom/nodelist.js deleted file mode 100644 index b8d59a5..0000000 --- a/_source/core/dom/nodelist.js +++ /dev/null @@ -1,26 +0,0 @@ -/* -Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. -For licensing, see LICENSE.html or http://ckeditor.com/license -*/ - -/** - * @class - */ -CKEDITOR.dom.nodeList = function( nativeList ) -{ - this.$ = nativeList; -}; - -CKEDITOR.dom.nodeList.prototype = -{ - count : function() - { - return this.$.length; - }, - - getItem : function( index ) - { - var $node = this.$[ index ]; - return $node ? new CKEDITOR.dom.node( $node ) : null; - } -};