Advertisement
Guest User

Untitled

a guest
Apr 17th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Inside package
  2.  
  3. UI = {
  4.   log: function(){
  5.     console.log('Called the log function');
  6.   }
  7. };
  8.  
  9. // Inside client event map
  10.  
  11.   'click .close': function(evt, tpl){
  12.     UI.log();
  13.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement