diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-07-11 06:15:44 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-07-11 06:15:44 -0700 |
commit | 6b013060aabc1d13545958fdb3c096faac2ba5a7 (patch) | |
tree | 8f09cc465526382c13d59a4fb5f939911bed4149 /modules/gallery/js | |
parent | ecc7d881e3bad1dd8edf5cbd4382bda9a668fcb8 (diff) |
Fix style: space after ) before {.
Diffstat (limited to 'modules/gallery/js')
-rw-r--r-- | modules/gallery/js/quick.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/js/quick.js b/modules/gallery/js/quick.js index 28ced3f6..2dcb1c36 100644 --- a/modules/gallery/js/quick.js +++ b/modules/gallery/js/quick.js @@ -22,10 +22,10 @@ var show_quick = function() { function(data, textStatus) { $("#gQuickPane").html(data).slideDown("fast"); $(".ui-state-default").hover( - function(){ + function() { $(this).addClass("ui-state-hover"); }, - function(){ + function() { $(this).removeClass("ui-state-hover"); } ); |