mirror of
https://github.com/kihashi/stardew_community_checklist.git
synced 2025-10-19 08:03:17 +00:00
14 lines
226 B
JavaScript
14 lines
226 B
JavaScript
v = new Vue({
|
|
el: '#app'
|
|
});
|
|
|
|
$(function() {
|
|
|
|
$('.list-group-item').on('click', function() {
|
|
$('.glyphicon', this)
|
|
.toggleClass('glyphicon-chevron-right')
|
|
.toggleClass('glyphicon-chevron-down');
|
|
});
|
|
|
|
});
|