Files
aether/static/js/core.js
2018-04-13 14:41:38 -04:00

8 lines
137 B
JavaScript

function cardPressed() {
this.classList.add('card-active');
}
function cardReleased() {
this.classList.remove('card-active');
}