Guest User

Untitled

a guest
Jun 25th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. for(tool in jsc.tools) {
  2. tool.init();
  3. }
  4.  
  5. jsc.tools.sometool = {};
  6. jsc.tools.sometool.run = function() {
  7. // Apply tool
  8. }
  9. jsc.tools.sometool.init = function() {
  10. // Set bits of data needed for the tool to run
  11. }
  12.  
  13. for(tool in jsc.tools) {
  14. jsc.tools[tool].init();
  15. }
  16.  
  17. for(tool in jsc.tools) {
  18. jsc.tools[tool].init();
  19. }
Add Comment
Please, Sign In to add comment