diff options
author | hellekin <hellekin@cepheide.org> | 2018-01-04 11:43:08 +0100 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2018-01-04 11:43:08 +0100 |
commit | 0c469f6a96f3f94d74a922691a3359c9cd604e94 (patch) | |
tree | e436fa4b4341e146be38eee99b894f04efecf428 /assets | |
parent | 7253207e9b4df635bb961066b26a9af858603b45 (diff) | |
download | lesoiseaux.io-0c469f6a96f3f94d74a922691a3359c9cd604e94.tar.gz |
Change pointer to mark the difference more effectively in the gfx tab
Diffstat (limited to 'assets')
-rw-r--r-- | assets/js/ps-app.js | 6 |
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 + }) }); |