Mercurial > pub > ImplabJs
view src/djol/_ToolBase.js @ 23:1d72fddc319a
make eslint happy
author | cin |
---|---|
date | Wed, 06 Dec 2017 14:19:45 +0300 |
parents | f0035923ff3e |
children |
line wrap: on
line source
define([ "dojo/_base/declare", "dojo/when", "implab/safe", "implab/guard", "implab/components/_ActivatableMixin", "implab/log/_LogMixin", "dojo/Evented", "./ToolType" ], function(declare, when, safe, guard, _ActivatableMixin, _LogMixin, Evented, ToolType) { return declare([ _ActivatableMixin, Evented ], { toolType : ToolType.Activatable, module : null, constructor : function(opts) { if (opts) { if (opts.controller) this.setController(opts.controller); } }, onActivating : function() { var me = this, inherited = this.getInherited(arguments); if (me.module && !me.module.isActive()) return me.module.activate().then(function(active) { return active ? inherited.apply(me) : false; }); else return inherited.apply(me); }, onActivated : function() { this.emit("active", true); }, onDeactivated : function() { this.emit("active", false); }, destroy : function() { } }); });