Sha256: df86fcc4f9abba28097e2e06a4f8ee707277f320bdf775dc894b7acf53d408f6

Contents?: true

Size: 455 Bytes

Versions: 3

Compression:

Stored size: 455 Bytes

Contents

/*
Copyright (c) 2003-2011, 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

3 entries across 3 versions & 2 rubygems

Version Path
ckeditor-rails-0.0.4 vendor/assets/ckeditor/ckeditor/_source/core/dom/nodelist.js
ckeditor-rails-0.0.3 vendor/assets/ckeditor/ckeditor/_source/core/dom/nodelist.js
typus-3.1.0.rc7 test/fixtures/rails_app/public/vendor/ckeditor/_source/core/dom/nodelist.js