Fix Issue 457: Remove experimentation on the ?url= parameter accidentally checked in.

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1311 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Jeff Schiller
2010-01-31 19:55:19 +00:00
parent 8ba1526e9f
commit 3e94e85e31
2 changed files with 4 additions and 7 deletions

View File

@@ -2759,11 +2759,6 @@ function svg_edit_setup() {
else if(loc.indexOf('?url=') != -1) {
var pre = '?url=';
var url = loc.substring(loc.indexOf(pre) + pre.length);
var s = document.createElement("script");
s.setAttribute("src", url);
document.body.appendChild(s);
console.log(s.textContent);
/*
$.ajax({
'url': url,
'dataType': 'text',
@@ -2774,7 +2769,6 @@ function svg_edit_setup() {
}
}
});
*/
}
}
});