Fix last bit of Issue 12: Show move cursor when hovering over visible elements in Select mode
git-svn-id: http://svg-edit.googlecode.com/svn/trunk@61 eee81c28-f429-11dd-99c0-75d572ba1dddmaster
parent
01fde3a807
commit
7103e25a2f
|
@ -116,6 +116,7 @@
|
||||||
|
|
||||||
<div id="workarea">
|
<div id="workarea">
|
||||||
|
|
||||||
|
<style id="styleoverrides" type="text/css"></style>
|
||||||
<div id="svgcanvas">
|
<div id="svgcanvas">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -119,6 +119,7 @@ function svg_edit_setup() {
|
||||||
// - removes the tool_button_current class from whatever tool currently has it
|
// - removes the tool_button_current class from whatever tool currently has it
|
||||||
// - adds the tool_button_current class to the button passed in
|
// - adds the tool_button_current class to the button passed in
|
||||||
var toolButtonClick = function(button){
|
var toolButtonClick = function(button){
|
||||||
|
$('#styleoverrides').text('');
|
||||||
$('.tools_flyout').hide();
|
$('.tools_flyout').hide();
|
||||||
$('.tool_button_current').removeClass('tool_button_current').addClass('tool_button');
|
$('.tool_button_current').removeClass('tool_button_current').addClass('tool_button');
|
||||||
$(button).addClass('tool_button_current');
|
$(button).addClass('tool_button_current');
|
||||||
|
@ -129,6 +130,7 @@ function svg_edit_setup() {
|
||||||
$('#tool_select').click(function(){
|
$('#tool_select').click(function(){
|
||||||
toolButtonClick(this);
|
toolButtonClick(this);
|
||||||
svgCanvas.setMode('select');
|
svgCanvas.setMode('select');
|
||||||
|
$('#styleoverrides').text('*{cursor:move} svg{cursor:auto}');
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#tool_path').click(function(){
|
$('#tool_path').click(function(){
|
||||||
|
|
Loading…
Reference in New Issue