2021-08-30 01:49:25 +00:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
< title > Documents< / title >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0, user-scalable=no" >
< meta name = "description" content = "" >
< meta name = "author" content = "" >
<!-- debug begin -->
< link rel = "stylesheet/less" type = "text/css" href = "resources/less/application.less" / >
<!-- debug end -->
<!-- [if lt IE 9]>
2021-09-13 17:10:12 +00:00
< script src = "//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.1/html5shiv.js" > < / script >
2021-08-30 01:49:25 +00:00
<![endif]-->
< / head >
< body >
<!-- debug begin -->
< script type = "text/javascript" > var less = less || { } ; less . env = 'development' ; < / script >
2021-09-15 00:40:16 +00:00
< script src = "../../../vendor/less/dist/less.js" type = "text/javascript" > < / script >
2021-08-30 01:49:25 +00:00
<!-- debug end -->
< script >
var userAgent = navigator.userAgent.toLowerCase(),
check = function(regex){ return regex.test(userAgent); };
if (!check(/opera/) & & (check(/msie/) || check(/trident/))) {
var m = /msie (\d+\.\d+)/.exec(userAgent);
if (m & & parseFloat(m[1]) < 10.0 ) {
document.write(
'< div id = "id-error-mask" class = "errormask" > ',
'< div class = "error-body" align = "center" > ',
'< div id = "id-error-mask-title" class = "title" > Your browser is not supported.< / div > ',
'< div id = "id-error-mask-text" > Sorry, ONLYOFFICE Document is currently only supported in the latest versions of the Chrome, Firefox, Safari or Internet Explorer web browsers.< / div > ',
'< / div > ',
'< / div > '
);
}
}
function getUrlParams() {
var e,
a = /\+/g, // Regex for replacing addition symbol with a space
r = /([^& =]+)=?([^& ]*)/g,
d = function (s) { return decodeURIComponent(s.replace(a, " ")); },
q = window.location.search.substring(1),
urlParams = {};
while (e = r.exec(q))
urlParams[d(e[1])] = d(e[2]);
return urlParams;
}
function encodeUrlParam(str) {
return str.replace(/"/g, '" ')
.replace(/'/g, '' ')
.replace(/< /g, '< ')
.replace(/>/g, '> ');
}
var params = getUrlParams(),
2021-09-10 06:26:28 +00:00
lang = (params["lang"] || 'en').split(/[\-\_]/)[0];
2021-08-30 01:49:25 +00:00
2021-09-10 06:26:28 +00:00
window.frameEditorId = params["frameEditorId"];
2021-08-30 01:49:25 +00:00
window.parentOrigin = params["parentOrigin"];
< / script >
2021-09-10 06:26:28 +00:00
< div id = "editor_sdk" class = "viewer" style = "overflow: hidden;" tabindex = "-1" > < / div >
2021-08-30 01:49:25 +00:00
<!-- vendor -->
2021-09-15 00:40:16 +00:00
< script type = "text/javascript" src = "../../../vendor/jquery/jquery.min.js" > < / script >
< script type = "text/javascript" src = "../../../vendor/jquery.browser/dist/jquery.browser.min.js" > < / script >
< script type = "text/javascript" src = "../../../vendor/bootstrap/dist/js/bootstrap.js" > < / script >
2021-08-30 01:49:25 +00:00
2021-09-15 00:40:16 +00:00
< script type = "text/javascript" src = "../../../vendor/sockjs/sockjs.min.js" > < / script >
< script type = "text/javascript" src = "../../../vendor/xregexp/xregexp-all-min.js" > < / script >
2021-08-30 01:49:25 +00:00
2021-09-15 00:40:16 +00:00
< script src = "../../../vendor/requirejs/require.js" > < / script >
2021-08-30 01:49:25 +00:00
2021-09-15 00:40:16 +00:00
< script type = "text/javascript" src = "../../../../sdkjs/develop/sdkjs/word/scripts.js" > < / script >
2021-08-30 01:49:25 +00:00
< script >
window.sdk_scripts.forEach(function(item){
2021-09-15 00:40:16 +00:00
document.write('< script type = "text/javascript" src = "' + item + '" > < \ / s c r i p t > ' ) ;
2021-08-30 01:49:25 +00:00
});
< / script >
<!-- application -->
2021-09-13 17:10:12 +00:00
< script type = "text/javascript" src = "../../common/Gateway.js" > < / script >
2021-08-30 01:49:25 +00:00
2021-09-13 17:10:12 +00:00
< script type = "text/javascript" src = "../../common/main/lib/util/LocalStorage.js" > < / script >
< script type = "text/javascript" src = "../../common/main/lib/util/utils.js" > < / script >
2021-08-30 01:49:25 +00:00
< script type = "text/javascript" src = "js/ApplicationView.js" > < / script >
< script type = "text/javascript" src = "js/ApplicationController.js" > < / script >
< script type = "text/javascript" src = "js/application.js" > < / script >
< script type = "text/javascript" >
var isBrowserSupported = function() {
return ($.browser.msie & & parseFloat($.browser.version) > 9) ||
($.browser.chrome & & parseFloat($.browser.version) > 7) ||
($.browser.safari & & parseFloat($.browser.version) > 4) ||
($.browser.opera & & parseFloat($.browser.version) > 10.4) ||
($.browser.mozilla & & parseFloat($.browser.version) > 3.9);
};
if (!isBrowserSupported()){
document.write(
'< div id = "id-error-mask" class = "errormask" > ',
'< div class = "error-body" align = "center" > ',
'< div id = "id-error-mask-title" class = "title" > Your browser is not supported.< / div > ',
'< div id = "id-error-mask-text" > Sorry, ONLYOFFICE Document is currently only supported in the latest versions of the Chrome, Firefox, Safari or Internet Explorer web browsers.< / div > ',
'< / div > ',
'< / div > '
);
}
< / script >
< / body >
< / html >