#process_cancel lint issue fixed

master
Agriya Dev5 2020-12-29 23:33:57 +05:30
parent 816f9fbbb7
commit 634ddcd4f6
3 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,4 @@
/* globals seConfirm */
/** /**
* @file ext-imagelib.js * @file ext-imagelib.js
* *

View File

@ -1,3 +1,4 @@
/* globals seConfirm */
/** /**
* @file ext-server_opensave.js * @file ext-server_opensave.js
* *

View File

@ -1,5 +1,5 @@
/* eslint-disable no-alert */ /* eslint-disable no-alert */
/* globals jQuery seSelect seAlert */ /* globals jQuery seSelect seAlert seConfirm */
/** /**
* The main module for the visual SVG Editor. * The main module for the visual SVG Editor.
* *
@ -1292,7 +1292,7 @@ editor.init = () => {
// fired when user wants to move elements to another layer // fired when user wants to move elements to another layer
let promptMoveLayerOnce = false; let promptMoveLayerOnce = false;
$('#selLayerNames').change( async(evt) => { $('#selLayerNames').change(async (evt) => {
const destLayer = evt.currentTarget.options[evt.currentTarget.selectedIndex].value; const destLayer = evt.currentTarget.options[evt.currentTarget.selectedIndex].value;
const confirmStr = uiStrings.notification.QmoveElemsToLayer.replace('%s', destLayer); const confirmStr = uiStrings.notification.QmoveElemsToLayer.replace('%s', destLayer);
/** /**
@ -1669,7 +1669,7 @@ editor.init = () => {
* @fires module:svgcanvas.SvgCanvas#event:ext_onNewDocument * @fires module:svgcanvas.SvgCanvas#event:ext_onNewDocument
* @returns {void} * @returns {void}
*/ */
const clickClear = async() => { const clickClear = async () => {
const [x, y] = editor.configObj.curConfig.dimensions; const [x, y] = editor.configObj.curConfig.dimensions;
const cancel = await seConfirm(uiStrings.notification.QwantToClear, [uiStrings.common.ok, uiStrings.common.cancel]); const cancel = await seConfirm(uiStrings.notification.QwantToClear, [uiStrings.common.ok, uiStrings.common.cancel]);
if (cancel === uiStrings.common.cancel) { if (cancel === uiStrings.common.cancel) {