Changeset 8307
- Timestamp:
- 04/26/07 11:09:23 (21 months ago)
- Files:
-
- 1 modified
-
dojo/trunk/_base/declare.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/_base/declare.js
r8299 r8307 110 110 var c = arguments.callee, p = c.prototype, s = c.superclass; 111 111 // superclass instantiation 112 if(s ){s.constructor.apply(this, arguments);}112 if(s&&s.constructor.apply){s.constructor.apply(this, arguments);} 113 113 // initialize any mixins 114 114 if(c.mixins){