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:
Jeff Schiller
2010-11-12 19:08:29 +00:00
parent 86c750848b
commit 4a133d490d
10 changed files with 651 additions and 493 deletions

View File

@@ -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 + ";");
}
}