diff options
author | Josh Blum | 2013-03-30 03:43:45 -0500 |
---|---|---|
committer | Josh Blum | 2013-03-30 03:43:45 -0500 |
commit | bd00a7db0d10287b2b5d65bb9401b47108b35c10 (patch) | |
tree | 5529b424cd34913f8bc5b55ae0cd309b94035df6 /python/gras | |
parent | 4846671b1d8931502ebdd87ce7fa85b02a44075f (diff) | |
download | sandhi-bd00a7db0d10287b2b5d65bb9401b47108b35c10.tar.gz sandhi-bd00a7db0d10287b2b5d65bb9401b47108b35c10.tar.bz2 sandhi-bd00a7db0d10287b2b5d65bb9401b47108b35c10.zip |
query: autohide for close box
Diffstat (limited to 'python/gras')
-rw-r--r-- | python/gras/query/chart_factory.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/gras/query/chart_factory.js b/python/gras/query/chart_factory.js index 0a7efbc..e4382d3 100644 --- a/python/gras/query/chart_factory.js +++ b/python/gras/query/chart_factory.js @@ -198,9 +198,10 @@ function gras_chart_factory_make(registry, args) //set the cursor on the title bar so its obvious tr_title.hover( - function(){$(this).css('cursor','move');}, - function(){$(this).css('cursor','auto');} + function(){$(this).css('cursor','move'); close_div.show();}, + function(){$(this).css('cursor','auto'); close_div.hide();} ); + close_div.hide(); } /*********************************************************************** |