fix issues 1,2,3

add CHANGES


git-svn-id: http://svg-edit.googlecode.com/svn/trunk@28 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Pavol Rusnak 2009-06-04 10:58:47 +00:00
parent 6543e7e872
commit 25921700d5
3 changed files with 19 additions and 11 deletions

10
CHANGES Normal file
View File

@ -0,0 +1,10 @@
2.0.1 - ???? ??, ????
---------------------
* added tooltips (by codedread)
* fix flyout menus (by codedread)
* ask before clearing the drawing (by martin.vidner)
2.0 - June 03, 2009
------------------
* rewritten SVG-edit, so now it uses OOP
* created HTML interface similar to Inkscape

View File

@ -18,6 +18,11 @@
border: 1px solid #808080;
}
#svg_editor #svgcanvas {
width: 642px;
height: 482px;
}
#svg_editor div#palette_holder {
border: 1px solid #808080;
border-top: none;

View File

@ -105,7 +105,9 @@ $(document).ready(function(){
});
$('#tool_clear').click(function(){
SvgCanvas.clear();
if( confirm('Do you want to clear the drawing?') ) {
SvgCanvas.clear();
}
});
$('#tool_submit').click(function(){
@ -155,21 +157,12 @@ $(document).ready(function(){
$('.tools_flyout').hide();
$('#tools_rect').show();
});
/*
$('#tools_rect').mouseout(function(){
$('#tools_rect').hide();
});
*/
// This hides any flyouts and then shows the circle flyout
$('#tools_ellipse_show').click(function(){
$('.tools_flyout').hide();
$('#tools_ellipse').show();
});
/*
$('#tools_ellipse').mouseout(function(){
$('#tools_ellipse').hide();
});
*/
})
function serializeHandler(svg) {