Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. this.allActive = this.mod.find( '.nutrition-mc-group-activity-level input');
  2.  
  3. _init: function(){
  4. this.allActive.on('change', $.proxy( this._uncheckActivityBtn, this ) );
  5. },
  6. _uncheckActivityBtn: function(){
  7. $(this.allActive).not(this).prop('checked', false);
  8. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement