2015-01-26 11:48:35 +11:00

28 lines
652 B
JavaScript

"use strict";
var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); };
var BaseView = function BaseView() {
this.autoRender = true;
};
var BaseView = function BaseView() {
this.autoRender = true;
};
var BaseView = (function () {
function BaseView() {}
_prototypeProperties(BaseView, null, {
foo: {
value: function foo() {
this.autoRender = true;
},
writable: true,
enumerable: true,
configurable: true
}
});
return BaseView;
})();