This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var B = typeof exports !== 'undefined' ? exports : {}; | |
// prefix for internal property state | |
var __PROP__ = '__PROP__'; | |
// default constructor used in setting up prototype chain | |
var ctor = function() {}; | |
B.extend = function(__super__, proto) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ### TableView | |
// TableView provides an efficient mechanism for progressively | |
// rendering from a data source provided by the owner object. | |
// Cells are queued for reuse when they go offscreen and then | |
// translated back into position with updated content as they | |
// are reused. | |
var TableView = exports.TableView = core.createClass({ | |
name: 'TableView', | |
extend: View, |