From bce8908d781f332b115aa42d057442c18bc11ad0 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 24 May 2018 13:57:08 +0300 Subject: [PATCH] [SSE mobile] Fix Bug 37686 --- apps/spreadsheeteditor/mobile/app/controller/Main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/mobile/app/controller/Main.js b/apps/spreadsheeteditor/mobile/app/controller/Main.js index 227af72ff..2c3769b0b 100644 --- a/apps/spreadsheeteditor/mobile/app/controller/Main.js +++ b/apps/spreadsheeteditor/mobile/app/controller/Main.js @@ -441,7 +441,7 @@ define([ if (action.type == Asc.c_oAscAsyncActionType.BlockInteraction) { if (me.loadMask && $(me.loadMask).hasClass('modal-in')) { $$(me.loadMask).find('.modal-title').text(title); - } else { + } else if ($$('.modal.modal-in').length < 1) { me.loadMask = uiApp.showPreloader(title); } }