17 lines
252 B
JavaScript
17 lines
252 B
JavaScript
"use strict";
|
|
|
|
var BaseView = function() {
|
|
var BaseView = function BaseView() {
|
|
this.autoRender = true;
|
|
};
|
|
|
|
return BaseView;
|
|
}();
|
|
|
|
var BaseView = function() {
|
|
var _class = function() {
|
|
this.autoRender = true;
|
|
};
|
|
|
|
return _class;
|
|
}(); |