diff options
author | Yukai Huang | 2017-04-11 11:37:41 +0800 |
---|---|---|
committer | Yukai Huang | 2017-05-07 20:37:27 +0800 |
commit | 432f215a456071d166d05ae3f51bf91e454a46e0 (patch) | |
tree | 743bfe908ad756d93ccdcaf0e4fe2df89bdd7cb6 /public | |
parent | c6c11c54ef62ed5c87dc7eb8139805a2889cbcc8 (diff) |
Fix indentation
Diffstat (limited to '')
-rw-r--r-- | public/js/index.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/public/js/index.js b/public/js/index.js index d34bfa93..66e3da28 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -2499,12 +2499,12 @@ function buildCursor (user) { cursor.attr('data-mode', 'hover') cursortag.delay(2000).fadeOut('fast') cursor.hover( - function () { - if (cursor.attr('data-mode') === 'hover') { cursortag.stop(true).fadeIn('fast') } - }, - function () { - if (cursor.attr('data-mode') === 'hover') { cursortag.stop(true).fadeOut('fast') } - }) + function () { + if (cursor.attr('data-mode') === 'hover') { cursortag.stop(true).fadeIn('fast') } + }, + function () { + if (cursor.attr('data-mode') === 'hover') { cursortag.stop(true).fadeOut('fast') } + }) var hideCursorTagDelay = 2000 var hideCursorTagTimer = null |