aboutsummaryrefslogtreecommitdiff
path: root/assets/js
diff options
context:
space:
mode:
Diffstat (limited to 'assets/js')
-rw-r--r--assets/js/ps-app.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/assets/js/ps-app.js b/assets/js/ps-app.js
index d58ea02..da6442e 100644
--- a/assets/js/ps-app.js
+++ b/assets/js/ps-app.js
@@ -14,10 +14,14 @@
return false
})
.mouseout(function(e) {
- e.target.style.cursor = 'auto'
+ e.target.style.cursor = 'not-allowed'
return false
})
})
+ $('.media').mouseout(function(e) {
+ e.target.style.cursor = 'auto'
+ return false
+ })
});