Sha256: 5b42c71ff7c5b7612c8280d3ddb15435c48d7a74f6255e87f431c4c3288ebb87

Contents?: true

Size: 468 Bytes

Versions: 7

Compression:

Stored size: 468 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

7 entries across 7 versions & 1 rubygems

Version Path
esp-ckeditor-0.1.7 vendor/assets/javascripts/_source/core/dom/nodelist.js
esp-ckeditor-0.1.6 vendor/assets/javascripts/esp-ckeditor/_source/core/dom/nodelist.js
esp-ckeditor-0.1.4 vendor/assets/javascripts/esp-ckeditor/_source/core/dom/nodelist.js
esp-ckeditor-0.1.3 app/assets/javascripts/esp-ckeditor/_source/core/dom/nodelist.js
esp-ckeditor-0.1.2 app/assets/javascripts/esp-ckeditor/_source/core/dom/nodelist.js
esp-ckeditor-0.1.1 app/assets/javascripts/esp-ckeditor/_source/core/dom/nodelist.js
esp-ckeditor-0.1.0 app/assets/javascripts/esp-ckeditor/_source/core/dom/nodelist.js