diff options
Diffstat (limited to 'python/gras/query/chart_factory.js')
-rw-r--r-- | python/gras/query/chart_factory.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/python/gras/query/chart_factory.js b/python/gras/query/chart_factory.js index 210ee18..5b3239a 100644 --- a/python/gras/query/chart_factory.js +++ b/python/gras/query/chart_factory.js @@ -194,7 +194,13 @@ function gras_chart_factory_make(registry, args) chart_box.draggable({stop: handle_stop, create: function(event, ui) { if ('position' in args) chart_box.offset(args.position); - }}); + }, cursor: "move"}); + + //set the cursor on the title bar so its obvious + tr_title.hover( + function(){$(this).css('cursor','move');}, + function(){$(this).css('cursor','auto');} + ); } /*********************************************************************** |