From 7ade0c98b519243d2aab5a43fd7a855e799fcb32 Mon Sep 17 00:00:00 2001 From: Joseph Hutchinson Date: Mon, 26 Mar 2018 14:05:00 -0400 Subject: [PATCH] Add js --- static/js/core.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 static/js/core.js diff --git a/static/js/core.js b/static/js/core.js new file mode 100644 index 0000000..00c0ee7 --- /dev/null +++ b/static/js/core.js @@ -0,0 +1,8 @@ + +function cardPressed() { + this.classList.add('card-link-wrapper-active'); +} + +function cardReleased() { + this.classList.remove('card-link-wrapper-active'); +} \ No newline at end of file