- Fix: An apparent bug in jquery.svgicons.js whereby a variable `holder` was declared in too nested of a scope - Fix: `addBezierCurve` in canvg.js had undeclared `i` - Fix: Undeclared variable in opera widget - Fix: Screencast `showNotes`
6 lines
244 B
JavaScript
6 lines
244 B
JavaScript
/* eslint-disable no-var */
|
|
function startSvgEdit () { // eslint-disable-line no-unused-vars
|
|
var url = 'chrome://svg-edit/content/editor/svg-editor.html';
|
|
window.openDialog(url, 'SVG Editor', 'width=1024,height=700,menubar=no,toolbar=no');
|
|
}
|