Changeset 492 for Dev/trunk/src/client/qed-client/pages/_ObjectPage.js
- Timestamp:
- 03/09/14 14:23:42 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/src/client/qed-client/pages/_ObjectPage.js
r491 r492 11 11 classStore: null, 12 12 constructor: function() { 13 if ( !this.classStore ) { throw new Error("Subclasses must specify a classStore."); } 13 if ( !this.classStore ) { 14 throw new Error("Subclasses must specify a classStore."); 15 } 16 }, 17 startup: function() { 18 if ( this._started ) { return; } 19 this.inherited(arguments); 20 this.markClean(); 14 21 }, 15 22 _load: function() {
Note: See TracChangeset
for help on using the changeset viewer.