Mercurial > pub > ImplabJs
comparison src/djol/ClearTool.js @ 8:f0035923ff3e
добавлена библиотека для работы с openlayers 3+
| author | cin |
|---|---|
| date | Mon, 21 Aug 2017 17:47:00 +0300 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 7:9c0943c68a90 | 8:f0035923ff3e |
|---|---|
| 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 }); |
