2016-03-11 00:48:53 +00:00
<!DOCTYPE html>
< html >
< head >
< title > ONLYOFFICE Document Editor< / title >
< meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" / >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge,chrome=IE8" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" >
2017-07-04 15:15:09 +00:00
<!-- splash -->
2016-03-11 00:48:53 +00:00
< style type = "text/css" >
.loadmask {
left: 0;
top: 0;
position: absolute;
height: 100%;
width: 100%;
overflow: hidden;
border: none;
background-color: #f4f4f4;
2019-07-26 13:20:43 +00:00
z-index: 1001;
2016-03-11 00:48:53 +00:00
}
2019-07-19 14:21:47 +00:00
.loadmask > .brendpanel {
width: 100%;
height: 56px;
background: #40865c;
2016-03-11 00:48:53 +00:00
}
2019-07-19 14:21:47 +00:00
.loadmask > .brendpanel > div {
display: flex;
align-items: center;
2016-03-11 00:48:53 +00:00
}
2019-07-19 14:21:47 +00:00
.loadmask > .brendpanel .loading-logo {
padding: 0 24px 0 12px;
max-width: 200px;
height: 20px;
2016-03-11 00:48:53 +00:00
}
2019-07-22 14:32:10 +00:00
.loadmask > .brendpanel .loading-logo > img {
2019-07-19 14:21:47 +00:00
display: inline-block;
2019-07-22 14:32:10 +00:00
max-width: 100px;
max-height: 20px;
2019-07-22 14:04:24 +00:00
opacity: 0;
2016-03-11 00:48:53 +00:00
}
2019-07-19 14:21:47 +00:00
.loadmask > .brendpanel .spacer {
margin-left: auto;
2016-03-11 00:48:53 +00:00
}
2019-07-19 14:21:47 +00:00
.loadmask > .brendpanel .circle {
vertical-align: middle;
width: 20px;
height: 20px;
border-radius: 12px;
margin: 4px 10px;
background: rgba(255, 255, 255, 0.2);
-webkit-animation: flickerAnimation 2s infinite ease-in-out;
-moz-animation: flickerAnimation 2s infinite ease-in-out;
-o-animation: flickerAnimation 2s infinite ease-in-out;
animation: flickerAnimation 2s infinite ease-in-out;
2016-03-11 00:48:53 +00:00
}
2019-07-19 14:21:47 +00:00
.loadmask > .brendpanel .rect {
vertical-align: middle;
width: 50px;
height: 12px;
border-radius: 3px;
margin: 0 10px;
background: rgba(255, 255, 255, 0.2);
-webkit-animation: flickerAnimation 2s infinite ease-in-out;
-moz-animation: flickerAnimation 2s infinite ease-in-out;
-o-animation: flickerAnimation 2s infinite ease-in-out;
animation: flickerAnimation 2s infinite ease-in-out;
2016-03-11 00:48:53 +00:00
}
2019-07-19 14:21:47 +00:00
.loadmask > .placeholder {
background: #fbfbfb;
width: 100%;
height: 100%;
border: 1px solid #dfdfdf;
white-space: nowrap;
2016-03-11 00:48:53 +00:00
2019-07-19 14:21:47 +00:00
-webkit-animation: flickerAnimation 2s infinite ease-in-out;
-moz-animation: flickerAnimation 2s infinite ease-in-out;
-o-animation: flickerAnimation 2s infinite ease-in-out;
animation: flickerAnimation 2s infinite ease-in-out;
2016-03-11 00:48:53 +00:00
}
2019-07-19 14:21:47 +00:00
.loadmask > .placeholder > .columns {
width: 100%;
height: 100%;
display: inline-block;
background: linear-gradient(90deg, #d5d5d5 0px, rgba(0,0,0,0) 1px) 0 0,
linear-gradient(rgba(0,255,0,0) 19px, #d5d5d5 20px) 0 0,
linear-gradient( #f1f1f1 0px, #f1f1f1 20px) 0 0 repeat-x;
background-size: 80px 20px;
2016-03-11 00:48:53 +00:00
}
2019-07-19 14:21:47 +00:00
.loadmask > .placeholder > .columns:first-child {
background: linear-gradient(#f1f1f1 19px, #d5d5d5 20px) 0 0;
background-size: 20px 20px;
width: 35px;
2016-03-11 00:48:53 +00:00
}
2019-07-19 14:21:47 +00:00
@keyframes flickerAnimation {
0% { opacity:1; }
50% { opacity:0.3; }
100% { opacity:1; }
2016-03-11 00:48:53 +00:00
}
2019-07-19 14:21:47 +00:00
@-o-keyframes flickerAnimation{
0% { opacity:1; }
50% { opacity:0.3; }
100% { opacity:1; }
2016-03-11 00:48:53 +00:00
}
2019-07-19 14:21:47 +00:00
@-moz-keyframes flickerAnimation{
0% { opacity:1; }
50% { opacity:0.3; }
100% { opacity:1; }
2016-03-11 00:48:53 +00:00
}
2019-07-19 14:21:47 +00:00
@-webkit-keyframes flickerAnimation{
0% { opacity:1; }
50% { opacity:0.3; }
100% { opacity:1; }
2016-03-11 00:48:53 +00:00
}
< / style >
< script >
2016-09-15 12:59:06 +00:00
var userAgent = navigator.userAgent.toLowerCase(),
check = function(regex){ return regex.test(userAgent); },
stopLoading = false;
if (!check(/opera/) & & (check(/msie/) || check(/trident/))) {
var m = /msie (\d+\.\d+)/.exec(userAgent);
2018-02-20 10:45:35 +00:00
if (m & & parseFloat(m[1]) < 10.0 ) {
2017-07-04 15:15:09 +00:00
document.write(
'< div class = "app-error-panel" > ' +
'< div class = "message-block" > ' +
'< div class = "message-inner" > ' +
'< div class = "title" > Your browser is not supported.< / div > ' +
'< div class = "text" > Sorry, Spreadsheet Editor is currently only supported in the latest versions of the Chrome, Firefox, Safari or Internet Explorer web browsers.< / div > ' +
'< / div > ' +
'< / div > ' +
'< / div > ');
2016-09-15 12:59:06 +00:00
stopLoading = true;
}
}
2016-03-11 00:48:53 +00:00
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, '< ')
.replace(/>/g, '> ');
}
var params = getUrlParams(),
2018-01-24 11:40:59 +00:00
lang = (params["lang"] || 'en').split(/[\-\_]/)[0],
2019-07-22 14:32:10 +00:00
logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null;
2016-03-11 00:48:53 +00:00
2016-12-14 11:20:18 +00:00
window.frameEditorId = params["frameEditorId"];
2016-03-11 00:48:53 +00:00
< / script >
2017-07-04 15:15:09 +00:00
< link rel = "stylesheet" type = "text/css" href = "../../../../sdkjs/cell/css/main.css" / >
<!-- debug begin -->
< link rel = "stylesheet/less" type = "text/css" href = "resources/less/app.less" / >
<!-- debug end -->
< / head >
< body >
2019-07-22 14:32:10 +00:00
< div id = "loading-mask" class = "loadmask" > < div class = "brendpanel" > < div > < div class = "loading-logo" > < img src = "../../common/main/resources/img/header/header-logo.png" > < / div > < div class = "circle" > < / div > < div class = "circle" > < / div > < div class = "circle" > < / div > < div class = "circle" > < / div > < div class = "spacer" > < / div > < div class = "rect" > < / div > < / div > < div > < span class = "rect" > < / span > < span class = "rect" > < / span > < span class = "rect" > < / span > < span class = "rect" > < / span > < span class = "rect" > < / span > < div class = "spacer" > < / div > < span class = "circle" > < / span > < span class = "circle" > < / span > < span class = "circle" > < / span > < / div > < / div > < div class = "placeholder" > < div class = "columns" > < / div > < div class = "columns" > < / div > < / div > < / div >
2016-03-11 00:48:53 +00:00
< div id = "viewport" > < / div >
2016-04-15 11:53:43 +00:00
2019-07-22 14:04:24 +00:00
< script >
if (stopLoading) {
document.body.removeChild(document.getElementById('loading-mask'));
} else {
2019-07-22 14:32:10 +00:00
var elem = document.querySelector('.loading-logo img');
2019-07-22 14:04:24 +00:00
if (elem) {
2019-07-22 14:32:10 +00:00
logo & & (elem.setAttribute('src', logo));
2019-07-22 14:04:24 +00:00
elem.style.opacity = 1;
}
}
< / script >
2017-07-13 09:10:40 +00:00
< script src = "../../../vendor/svg-injector/svg-injector.min.js" > < / script >
< img class = "inline-svg" src = "../../common/main/resources/img/header/buttons.svg" >
2018-04-17 12:07:30 +00:00
< img class = "inline-svg" src = "../../common/main/resources/img/doc-formats/xlsx.svg" >
2019-02-21 13:10:37 +00:00
< img class = "inline-svg" src = "../../common/main/resources/img/doc-formats/xltx.svg" >
2018-04-17 12:07:30 +00:00
< img class = "inline-svg" src = "../../common/main/resources/img/doc-formats/pdf.svg" >
2018-07-18 11:07:24 +00:00
< img class = "inline-svg" src = "../../common/main/resources/img/doc-formats/pdfa.svg" >
2018-04-17 12:07:30 +00:00
< img class = "inline-svg" src = "../../common/main/resources/img/doc-formats/ods.svg" >
2019-02-21 13:10:37 +00:00
< img class = "inline-svg" src = "../../common/main/resources/img/doc-formats/ots.svg" >
2018-04-17 12:07:30 +00:00
< img class = "inline-svg" src = "../../common/main/resources/img/doc-formats/csv.svg" >
< img class = "inline-svg" src = "../../common/main/resources/img/doc-formats/blank.svg" >
2019-04-01 13:10:35 +00:00
< img class = "inline-svg" src = "../../common/main/resources/img/toolbar/shapetypes.svg" >
2017-07-13 09:10:40 +00:00
< script >
var svgpoints = document.querySelectorAll('img.inline-svg');
SVGInjector(svgpoints);
< / script >
2017-04-27 15:40:27 +00:00
2016-03-24 11:10:48 +00:00
< script type = "text/javascript" >
window.g_debug_mode = true;
< / script >
2017-04-27 15:40:27 +00:00
2016-03-11 00:48:53 +00:00
<!-- debug begin -->
2019-07-19 14:21:47 +00:00
< script type = "text/javascript" > var less = less || { } ; less . env = 'development' ; less . async = true ; < / script >
2016-11-10 11:48:41 +00:00
< script src = "../../../vendor/less/dist/less-2.7.1.js" type = "text/javascript" > < / script >
2016-03-11 00:48:53 +00:00
<!-- debug end -->
2016-05-13 11:23:09 +00:00
< script type = "text/javascript" src = "../../../vendor/jquery/jquery.min.js" > < / script >
< script type = "text/javascript" src = "../../../vendor/xregexp/xregexp-all-min.js" > < / script >
< script type = "text/javascript" src = "../sdk_dev_scripts.js" > < / script >
< script >
window.sdk_dev_scrpipts.forEach(function(item){
document.write('< script type = "text/javascript" src = "' + item + '" > < \ / s c r i p t > ' ) ;
});
2017-06-23 13:42:18 +00:00
window.requireTimeourError = function(){
var reqerr;
if ( lang == 'de') reqerr = 'Die Verbindung ist zu langsam, einige Komponenten konnten nicht geladen werden. Aktualisieren Sie bitte die Seite.';
else if ( lang == 'es') reqerr = 'La conexión es muy lenta, algunos de los componentes no han podido cargar. Por favor recargue la página.';
else if ( lang == 'fr') reqerr = 'La connexion est trop lente, certains des composants n\'ons pas pu être chargé. Veuillez recharger la page.';
else if ( lang == 'ru') reqerr = 'Слишком медленное соединение, не удается загрузить некоторые компоненты. Пожалуйста, обновите страницу.';
else reqerr = 'The connection is too slow, some of the components could not be loaded. Please reload the page.';
return reqerr;
};
2016-05-13 11:23:09 +00:00
< / script >
2016-03-11 00:48:53 +00:00
<!-- application -->
2016-03-24 11:10:48 +00:00
< script data-main = "app_dev" src = "../../../vendor/requirejs/require.js" > < / script >
2016-03-11 00:48:53 +00:00
< / body >
< / html >