events.js 332 B

123456789101112
  1. Lungo.Events.init({
  2. 'tap section#a article a': function(){
  3. Lungo.Notification.loading('hole', '1', 'user');
  4. },
  5. 'tap section#sec-1 header #btn-toggle-loading': App.View.toggleLoading,
  6. 'load section#sec-2 load': App.View.toggleLoading,
  7. 'tap section#pull article': function(){
  8. alert(1);
  9. }
  10. });