Commit 978e05ab authored by Oleg Korshul's avatar Oleg Korshul Committed by GitHub

Merge pull request #89 from ONLYOFFICE/hotfix/v4.2.2

presentation with password
parents bdbeeeb4 d727e4ed
......@@ -2246,20 +2246,20 @@ CUserCacheColor.prototype.init = function(nColor) {
return;
}
if (window["AscDesktopEditor"])
if (window["AscDesktopEditor"] && window["local_load_add"])
{
var _context = { "completeLoad" : function() { return callback(); } };
window["local_load_add"](_context, "sdk-all-from-min", url);
var _ret_param = window["AscDesktopEditor"]["LoadJS"](url);
if (2 != _ret_param)
window["local_load_remove"](url);
if (_ret_param == 1)
{
setTimeout(callback, 1);
return;
}
else if (_ret_param == 2)
{
window["asc_desktop_localModuleId"] = "sdk-all.js";
window["asc_desktop_context"] = { "completeLoad" : function() { return callback(); } };
return;
}
}
var script = document.createElement('script');
......
......@@ -270,4 +270,5 @@ Asc['asc_docs_api'].prototype.asc_setAdvancedOptions = function(idOption, option
_param += ("<m_sPassword>" + AscCommon.CopyPasteCorrectString(option.asc_getPassword()) + "</m_sPassword>");
window["AscDesktopEditor"]["SetAdvancedOptions"](_param);
}
};
\ No newline at end of file
};
Asc['asc_docs_api'].prototype["asc_setAdvancedOptions"] = Asc['asc_docs_api'].prototype.asc_setAdvancedOptions;
\ No newline at end of file
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