crowdAI/crowdai

View on GitHub
app/assets/javascripts/controllers/challenges_controller.js

Summary

Maintainability
A
0 mins
Test Coverage
Paloma.controller('Challenges', {
  edit: function(){
    $('.active-switch').click(function(){
      var self = this;
      $('.active-switch').each(function(){
        this.checked = false;
      });
      self.checked = true;
    });
  }
});