Sha256: ba418e845d37cf35d65d3e299a6b5452860a65a167a9d10f3e2b59204a99cf87
Contents?: true
Size: 481 Bytes
Versions: 66
Compression:
Stored size: 481 Bytes
Contents
/* Copyright (c) 2003-2010, 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; } };
Version data entries
66 entries across 66 versions & 9 rubygems