Mercurial > pub > ImplabJs
annotate src/djol/ClearTool.js @ 10:8705103f074f
Слияние
| author | cin |
|---|---|
| date | Mon, 21 Aug 2017 18:03:00 +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 }); |
