1
0
mirror of https://github.com/kihashi/stardew_community_checklist.git synced 2025-10-19 08:03:17 +00:00

Added JS from codepen.

This commit is contained in:
John Cleaver 2016-03-16 18:11:14 -04:00
parent 3d9002406a
commit 5c6a8ef9a2

13
main.js Normal file
View File

@ -0,0 +1,13 @@
v = new Vue({
el: '#app'
});
$(function() {
$('.list-group-item').on('click', function() {
$('.glyphicon', this)
.toggleClass('glyphicon-chevron-right')
.toggleClass('glyphicon-chevron-down');
});
});