26 lines
383 B
JavaScript
26 lines
383 B
JavaScript
"use strict";
|
|
|
|
var BaseView = function BaseView() {
|
|
this.autoRender = true;
|
|
};
|
|
|
|
var BaseView = function() {
|
|
this.autoRender = true;
|
|
};
|
|
|
|
|
|
var BaseView = function() {
|
|
var _class2 = function() {};
|
|
|
|
Object.defineProperties(_class2.prototype, {
|
|
foo: {
|
|
writable: true,
|
|
value: function() {
|
|
this.autoRender = true;
|
|
}
|
|
}
|
|
});
|
|
|
|
return _class2;
|
|
}();
|