- Linting: ESLint (or ignore) JavaScript files; unfinished: editor/jgraduate and editor/extensions folders, editor/ (root), test/ (root) HTML

- 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`
This commit is contained in:
Brett Zamir
2018-05-13 18:47:00 +08:00
parent 820964334c
commit 5894398c36
16 changed files with 6846 additions and 6996 deletions

View File

@@ -206,10 +206,10 @@
<h2>Plugin Architecture</h2>
</header>
<pre>
svgEditor.addExtension("Hello World", function() {
svgEditor.addExtension("Hello World", function () {
return {
svgicons: "extensions/helloworld-icon.xml",
svgicons: 'extensions/helloworld-icon.xml',
buttons: [{...}],
mouseDown: function() {
...