Sha256: 3694be790ef33c17a1f4e73379a294391b8e49ae066bf10e21caa4d8baf57f42
Contents?: true
Size: 460 Bytes
Versions: 22
Compression:
Stored size: 460 Bytes
Contents
/* Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ 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
22 entries across 22 versions & 6 rubygems