Mercurial > pub > ImplabJs
annotate src/djol/ClearTool.js @ 23:1d72fddc319a
make eslint happy
author | cin |
---|---|
date | Wed, 06 Dec 2017 14:19:45 +0300 |
parents | f0035923ff3e |
children |
rev | line source |
---|---|
8 | 1 define (["dojo/_base/declare", "./_OneshotTool", "implab/safe"] , function(declare, _OneshotTool, safe) { |
2 return declare([_OneshotTool], { | |
3 tools : null, | |
4 | |
5 constructor : function(opts) { | |
6 safe.mixin(this,opts, ["tools"]); | |
7 }, | |
8 | |
9 invoke : function() { | |
10 if (this.tools) { | |
11 this.log("Clear {0} tools", this.tools.length); | |
12 safe.each(this.tools, function(tool) { | |
13 if (tool.clear) | |
14 tool.clear(); | |
15 }); | |
16 } | |
17 } | |
18 }); | |
19 }); |