8
app/assets/javascripts/forms/button-group.js
Normal file
8
app/assets/javascripts/forms/button-group.js
Normal file
@ -0,0 +1,8 @@
|
||||
/**
|
||||
* Button Group Functionality
|
||||
*/
|
||||
|
||||
$('.btn-group button').click(function() {
|
||||
$(this).siblings().removeClass('selected');
|
||||
$(this).addClass('selected');
|
||||
});
|
Reference in New Issue
Block a user