Guest User

Untitled

a guest
Mar 17th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. clickedPerson: function(el) {
  2. var handled = false;
  3.  
  4. switch ( Integrator.state.get('a') ) {
  5. default:
  6. Integrator.goStateA3();
  7. handled = true;
  8. }
  9.  
  10. if (!handled) alert('Integrator.clickedPerson() not handled');
  11. },
Add Comment
Please, Sign In to add comment