Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. var output = $("#output");
  2. var scripts = "";
  3.  
  4. for(var i = 0; i < js_editors.length; i++){
  5. scripts += js_editors[i].getValue();
  6. }
  7.  
  8. output.html(scripts);
  9. eval(output.html());
  10.  
  11. var gamefield;
  12.  
  13. var onStartFunction;
  14. var onEndFunction;
  15.  
  16. /** set a function to be executed when the game just startet */
  17. this.onSta
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement