aboutsummaryrefslogtreecommitdiff
path: root/assets/js
diff options
context:
space:
mode:
authorhellekin <hellekin@cepheide.org>2018-01-04 11:43:08 +0100
committerhellekin <hellekin@cepheide.org>2018-01-04 11:43:08 +0100
commit0c469f6a96f3f94d74a922691a3359c9cd604e94 (patch)
treee436fa4b4341e146be38eee99b894f04efecf428 /assets/js
parent7253207e9b4df635bb961066b26a9af858603b45 (diff)
downloadlesoiseaux.io-0c469f6a96f3f94d74a922691a3359c9cd604e94.tar.gz
Change pointer to mark the difference more effectively in the gfx tab
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
+ })
});