Add mask element and attribute to whitelist

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1310 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Jeff Schiller
2010-01-31 07:11:57 +00:00
parent d0783f80bd
commit 8ba1526e9f
2 changed files with 23 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
/*
/*
* svg-editor.js
*
* Licensed under the Apache License, Version 2
@@ -2759,6 +2759,11 @@ 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',
@@ -2769,6 +2774,7 @@ function svg_edit_setup() {
}
}
});
*/
}
}
});