Added support for editing inside rotated groups (issue 615), fixed some minor bugs

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1782 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Alexis Deveria
2010-10-07 20:20:43 +00:00
parent 58a71b0593
commit 4d65eaf2f9
3 changed files with 15 additions and 7 deletions

View File

@@ -2668,9 +2668,11 @@
var updateTitle = function(title) {
title = title || svgCanvas.getDocumentTitle();
var new_title = orig_title + (title?': ' + title:'');
if(cur_context) {
new_title = new_title + cur_context;
}
// Remove title update with current context info, isn't really necessary
// if(cur_context) {
// new_title = new_title + cur_context;
// }
$('title:first').text(new_title);
}