Move undo/redo functionality into history.js. Started unit test file.
git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1864 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
@@ -175,8 +175,7 @@ svgedit.utilities.convertToXMLReferences = function(input) {
|
||||
var c = input.charCodeAt(n);
|
||||
if (c < 128) {
|
||||
output += input[n];
|
||||
}
|
||||
else if(c > 127) {
|
||||
} else if(c > 127) {
|
||||
output += ("&#" + c + ";");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user