From 5c6a8ef9a23a3a2c807720f60f4de6c700aff2df Mon Sep 17 00:00:00 2001 From: John Cleaver Date: Wed, 16 Mar 2016 18:11:14 -0400 Subject: [PATCH] Added JS from codepen. --- main.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 main.js diff --git a/main.js b/main.js new file mode 100644 index 0000000..7d29951 --- /dev/null +++ b/main.js @@ -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'); + }); + +});