ref: dockerize
public/javascripts/assign_role.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
(function($){ 'use strict'; function toggle_assignment_method() { if (this.value != "roles") { $('.assign_by_roles').hide(); $('.assign_by_members').show(); } else { $('.assign_by_members').hide(); $('.assign_by_roles').show(); } } $(document).ready(function() { $('.assign_by_roles').hide(); // Event triggers $('.assign_role_by').click(toggle_assignment_method); }); })(jQuery); |