8 lines
261 B
JavaScript
8 lines
261 B
JavaScript
|
function start_svg_edit() {
|
||
|
var url = "chrome://SVG-edit/content/editor/svg-editor.html";
|
||
|
var browser = document.getElementById("content");
|
||
|
|
||
|
window.openDialog(url, "SVG Editor",
|
||
|
"width=1024,height=700,menubar=no,toolbar=no");
|
||
|
}
|