@@ -2039,7 +2039,7 @@ vColor=color;\n\
var fn_afterBind = this._afterBind;
- this._afterBind = function(this: any, m,e){
+ this._afterBind = (m,e) => {
this.AttachAfterBind(m,e);
try{fn_afterBind(m,e);}catch(e){};
} ;
@@ -114,10 +114,10 @@
return (target: any, propertyKey: string) => {
var key = targetKey || ("_" + propertyKey);
Object.defineProperty(target, propertyKey, {
- get: function (this: any) {
+ get: function () {
return this[key];
},
- set: function (this: any, value) {
+ set: function (value) {
if (this[key] === value) {
return;
}