20 lines
302 B
JavaScript
20 lines
302 B
JavaScript
"use strict";
|
|
|
|
var BaseView = function BaseView() {
|
|
this.autoRender = true;
|
|
};
|
|
|
|
var BaseView = function () {
|
|
this.autoRender = true;
|
|
};
|
|
|
|
var BaseView = (function () {
|
|
var _class2 = function () {};
|
|
|
|
_class2.prototype.foo = function () {
|
|
this.autoRender = true;
|
|
};
|
|
|
|
return _class2;
|
|
})();
|