Commit 79c150a0 authored by Alexander Yuzhin's avatar Alexander Yuzhin

[DE mobile] Fixed startup application.

parent 23da7d5b
......@@ -249,7 +249,7 @@ define([
if (format) {
if (format == Asc.c_oAscFileType.TXT) {
_.delay(function () {
_.defer(function () {
uiApp.confirm(
me.warnDownloadAs,
me.notcriticalErrorTitle,
......@@ -257,9 +257,11 @@ define([
me.api.asc_DownloadAs(format);
}
);
}, 300);
});
} else {
me.api.asc_DownloadAs(format);
_.defer(function () {
me.api.asc_DownloadAs(format);
});
}
me.hideModal();
......
......@@ -87,20 +87,6 @@ define([
}
},
_dummyEditController: function () {
var layout =
'<div class="content-block inset">' +
'<div class="content-block-inner"> ' +
'<p>Implement add view!!!!</p>' +
'</div>' +
'</div>';
return {
caption: 'Dummy',
layout: layout
}
},
_layoutEditorsByStack: function () {
var addViews = [];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment