source: branches/2.2/filemanager/tp/ckeditor/_source/core/dom/nodelist.js @ 3019

Revision 3019, 460 bytes checked in by amuller, 14 years ago (diff)

Ticket #1135 - Corrigindo CSS e adicionando filemanager

Line 
1/*
2Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.html or http://ckeditor.com/license
4*/
5
6CKEDITOR.dom.nodeList = function( nativeList )
7{
8        this.$ = nativeList;
9};
10
11CKEDITOR.dom.nodeList.prototype =
12{
13        count : function()
14        {
15                return this.$.length;
16        },
17
18        getItem : function( index )
19        {
20                var $node = this.$[ index ];
21                return $node ? new CKEDITOR.dom.node( $node ) : null;
22        }
23};
Note: See TracBrowser for help on using the repository browser.