Browse Source

REPORT-67093 fix: 修复工具栏按钮置灰问题,需要改变action内部的this指向

es6
Austin.Duan 3 years ago
parent
commit
92945fbb10
  1. 2
      src/core/3.ob.js

2
src/core/3.ob.js

@ -67,7 +67,7 @@
self.on(eventName, lis);
return;
}
(lis.target ? lis.target : self)[lis.once ? "once" : "on"](lis.eventName, lis.action);
(lis.target ? lis.target : self)[lis.once ? "once" : "on"](lis.eventName, _.bind(lis.action, self));
});
delete this.options.listeners;
}

Loading…
Cancel
Save