parent
2631a21607
commit
27aa89e481
|
@ -6,6 +6,8 @@
|
|||
- Fix: Extension with no `placement` to be added to end;
|
||||
for #326 (@sjernigan)
|
||||
- Fix: Error on dragging control point of arc; fixes #268 (@cuixiping)
|
||||
- Fix: With locales loading before extensions, ensure extensions'
|
||||
`langReady` runs properly; fixes #334 (@cuixiping)
|
||||
- Optimization fix: Properly run code conditionally on browser check;
|
||||
fixes #312 (@ianli-sc)
|
||||
- Enhancement: Add CAD Placemark extension (@NeiroNx)
|
||||
|
|
|
@ -36011,8 +36011,6 @@ editor.init = function () {
|
|||
var _ref30 = _asyncToGenerator(
|
||||
/*#__PURE__*/
|
||||
regeneratorRuntime.mark(function _callee17(lang, allStrings) {
|
||||
var _this = this;
|
||||
|
||||
var oldLayerName, renameLayer, elems;
|
||||
return regeneratorRuntime.wrap(function _callee17$(_context17) {
|
||||
while (1) {
|
||||
|
@ -36069,7 +36067,7 @@ editor.init = function () {
|
|||
|
||||
case 17:
|
||||
loadedExtensionNames.forEach(function (loadedExtensionName) {
|
||||
_this.runExtension(loadedExtensionName, 'langReady',
|
||||
svgCanvas.runExtension(loadedExtensionName, 'langReady',
|
||||
/** @type {module:svgcanvas.SvgCanvas#event:ext-langReady} */
|
||||
{
|
||||
lang: lang,
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -36017,8 +36017,6 @@
|
|||
var _ref30 = _asyncToGenerator(
|
||||
/*#__PURE__*/
|
||||
regeneratorRuntime.mark(function _callee17(lang, allStrings) {
|
||||
var _this = this;
|
||||
|
||||
var oldLayerName, renameLayer, elems;
|
||||
return regeneratorRuntime.wrap(function _callee17$(_context17) {
|
||||
while (1) {
|
||||
|
@ -36075,7 +36073,7 @@
|
|||
|
||||
case 17:
|
||||
loadedExtensionNames.forEach(function (loadedExtensionName) {
|
||||
_this.runExtension(loadedExtensionName, 'langReady',
|
||||
svgCanvas.runExtension(loadedExtensionName, 'langReady',
|
||||
/** @type {module:svgcanvas.SvgCanvas#event:ext-langReady} */
|
||||
{
|
||||
lang: lang,
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -36014,8 +36014,6 @@
|
|||
var _ref30 = _asyncToGenerator(
|
||||
/*#__PURE__*/
|
||||
regeneratorRuntime.mark(function _callee17(lang, allStrings) {
|
||||
var _this = this;
|
||||
|
||||
var oldLayerName, renameLayer, elems;
|
||||
return regeneratorRuntime.wrap(function _callee17$(_context17) {
|
||||
while (1) {
|
||||
|
@ -36072,7 +36070,7 @@
|
|||
|
||||
case 17:
|
||||
loadedExtensionNames.forEach(function (loadedExtensionName) {
|
||||
_this.runExtension(loadedExtensionName, 'langReady',
|
||||
svgCanvas.runExtension(loadedExtensionName, 'langReady',
|
||||
/** @type {module:svgcanvas.SvgCanvas#event:ext-langReady} */
|
||||
{
|
||||
lang: lang,
|
||||
|
|
|
@ -36014,8 +36014,6 @@
|
|||
var _ref30 = _asyncToGenerator(
|
||||
/*#__PURE__*/
|
||||
regeneratorRuntime.mark(function _callee17(lang, allStrings) {
|
||||
var _this = this;
|
||||
|
||||
var oldLayerName, renameLayer, elems;
|
||||
return regeneratorRuntime.wrap(function _callee17$(_context17) {
|
||||
while (1) {
|
||||
|
@ -36072,7 +36070,7 @@
|
|||
|
||||
case 17:
|
||||
loadedExtensionNames.forEach(function (loadedExtensionName) {
|
||||
_this.runExtension(loadedExtensionName, 'langReady',
|
||||
svgCanvas.runExtension(loadedExtensionName, 'langReady',
|
||||
/** @type {module:svgcanvas.SvgCanvas#event:ext-langReady} */
|
||||
{
|
||||
lang: lang,
|
||||
|
|
Loading…
Reference in New Issue