Guest User

Untitled

a guest
Jan 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. (function() { ...
  2.  
  3. editor.bind = function(func, eventName) {
  4. if ((typeof func === "function") && (typeof eventName === "string")) {
  5. editor.canvas.addEventListener(func, eventName, true);
  6. }
  7. };
  8.  
  9.  
  10. ... })();
Add Comment
Please, Sign In to add comment