2016-03-11 00:48:53 +00:00
<!DOCTYPE html>
<html style="width:100%; height:100%;">
<head>
<title>ONLYOFFICE Presentation 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="description" content="" />
<meta name="keywords" content="" />
<link rel="icon" href="resources/img/favicon.ico" type="image/x-icon" />
<!-- splash -->
<style type="text/css">
.loadmask {
left: 0;
top: 0;
position: absolute;
height: 100%;
width: 100%;
overflow: hidden;
border: none;
2019-10-21 13:58:34 +00:00
background-color: #e2e2e2;
2019-07-26 13:20:43 +00:00
z-index: 1001;
2016-03-11 00:48:53 +00:00
}
2019-09-12 14:11:32 +00:00
.loadmask > .brendpanel {
2016-03-11 00:48:53 +00:00
width: 100%;
2020-01-15 13:12:53 +00:00
min-height: 28px;
2019-09-12 14:11:32 +00:00
background: #aa5252;
2016-09-14 09:45:10 +00:00
}
2019-09-12 14:11:32 +00:00
.loadmask > .brendpanel > div {
display: flex;
align-items: center;
2019-10-21 13:58:34 +00:00
height: 28px;
2016-03-11 00:48:53 +00:00
}
2019-09-12 14:11:32 +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-09-12 14:11:32 +00:00
.loadmask > .brendpanel .loading-logo > img {
display: inline-block;
max-width: 100px;
max-height: 20px;
opacity: 0;
2016-03-11 00:48:53 +00:00
}
2019-09-12 14:11:32 +00:00
.loadmask > .brendpanel .spacer {
margin-left: auto;
2016-03-11 00:48:53 +00:00
}
2019-09-12 14:11:32 +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);
2016-03-11 00:48:53 +00:00
}
2019-10-04 08:49:37 +00:00
.loadmask > .sktoolbar {
2019-10-21 13:58:34 +00:00
background: #f1f1f1;
border-bottom: 1px solid #cbcbcb;
2019-10-04 08:49:37 +00:00
height: 46px;
2020-12-23 17:22:31 +00:00
padding: 10px 6px;
2019-10-04 08:49:37 +00:00
box-sizing: content-box;
}
.loadmask > .sktoolbar ul {
margin: 0;
padding: 0;
white-space: nowrap;
position: relative;
}
.loadmask > .sktoolbar li {
background: #ececec;
border-radius: 3px;
width: 20px;
height: 20px;
display: inline-block;
margin-right: 6px;
}
.loadmask > .sktoolbar li.space {
background: none;
2020-12-23 17:22:31 +00:00
width: 0;
}
.loadmask > .sktoolbar li.split {
width: 32px;
2019-10-04 08:49:37 +00:00
}
.loadmask > .sktoolbar li.big {
2020-12-23 17:22:31 +00:00
width: 55px;
2019-10-04 08:49:37 +00:00
height: 46px;
margin-top: -46px;
}
.loadmask > .sktoolbar li.fat {
position: absolute;
right: 0;
top: 0;
bottom: 0;
2020-12-23 17:22:31 +00:00
left: 758px;
2019-10-04 08:49:37 +00:00
width: inherit;
height: 44px;
}
2019-09-12 14:11:32 +00:00
.loadmask > .placeholder {
display: flex;
flex-direction: column;
min-height: 100%;
margin: 0 100px;
2016-03-11 00:48:53 +00:00
}
2019-09-12 14:11:32 +00:00
.loadmask > .placeholder .slide-h {
display: flex;
flex-direction: column;
justify-content: center;
flex-grow: 1;
max-width: 1350px;
width: 100%;
2019-10-04 08:49:37 +00:00
margin: 0 auto 126px;
2016-03-11 00:48:53 +00:00
}
2019-10-04 08:49:37 +00:00
2019-09-12 14:11:32 +00:00
.loadmask > .placeholder .slide-v {
display: flex;
position: relative;
flex-direction: column;
padding-bottom: 56.1333%;
2016-03-11 00:48:53 +00:00
}
2019-09-12 14:11:32 +00:00
.loadmask > .placeholder .slide-container {
position: absolute;
height: 100%;
width: 100%;
background: #fbfbfb;
border: 1px solid #dfdfdf;
2016-03-11 00:48:53 +00:00
2019-09-12 14:11:32 +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-09-12 14:11:32 +00:00
.loadmask > .placeholder .slide-container > .line {
2019-09-27 15:43:55 +00:00
height: 20%;
margin: 0 120px;
2019-09-12 14:11:32 +00:00
border-radius: 6px;
background: #f5f5f5;
2016-03-11 00:48:53 +00:00
}
2019-09-27 15:43:55 +00:00
.loadmask > .placeholder .slide-container > .line.empty {
background: transparent;
}
2019-09-12 14:11:32 +00:00
.loadmask > .placeholder .slide-container > .line:nth-child(1) {
2019-09-27 15:43:55 +00:00
height: 30%;
2019-10-17 08:20:57 +00:00
margin: 10% 80px 0;
2016-03-11 00:48:53 +00:00
}
2019-09-12 14:11:32 +00:00
@keyframes flickerAnimation {
0% { opacity:1; }
2019-10-21 13:58:34 +00:00
50% { opacity:0.5; }
2019-09-12 14:11:32 +00:00
100% { opacity:1; }
2016-03-11 00:48:53 +00:00
}
2019-09-12 14:11:32 +00:00
@-o-keyframes flickerAnimation{
0% { opacity:1; }
2019-10-21 13:58:34 +00:00
50% { opacity:0.5; }
2019-09-12 14:11:32 +00:00
100% { opacity:1; }
}
@-moz-keyframes flickerAnimation{
0% { opacity:1; }
2019-10-21 13:58:34 +00:00
50% { opacity:0.5; }
2019-09-12 14:11:32 +00:00
100% { opacity:1; }
}
@-webkit-keyframes flickerAnimation{
0% { opacity:1; }
2019-10-21 13:58:34 +00:00
50% { opacity:0.5; }
2019-09-12 14:11:32 +00:00
100% { opacity:1; }
2016-03-11 00:48:53 +00:00
}
</style>
2017-07-04 15:15:09 +00:00
<script>
2020-08-26 14:24:52 +00:00
// don't add zoom for mobile devices
if (!(/android|avantgo|playbook|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od|ad)|iris|kindle|lge |maemo|midp|mmp|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent || navigator.vendor || window.opera)))
document.getElementsByTagName('html')[0].setAttribute('style', 'zoom: ' + 1 / (window.devicePixelRatio < 2 ? window.devicePixelRatio : window.devicePixelRatio / 2) + ';');
2019-10-02 14:54:49 +00:00
2017-07-04 15:15:09 +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, Presentation Editor is currently only supported in the latest versions of the Chrome, Firefox, Safari or Internet Explorer web browsers.</div>' +
'</div>' +
'</div></div>');
stopLoading = true;
}
2019-04-29 15:03:21 +00:00
} else
if (check(/windows\snt/i)) {
var re = /chrome\/(\d+)/i.exec(userAgent);
2019-05-07 08:54:00 +00:00
if (!!re && !!re[1] && !(re[1] > 49)) {
2019-04-29 15:03:21 +00:00
setTimeout(function () {
2020-12-07 10:22:38 +00:00
document.getElementsByTagName('html')[0].className += "winxp";
2019-04-29 15:03:21 +00:00
},0);
}
2017-07-04 15:15:09 +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-09-12 14:11:32 +00:00
logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null;
2017-07-04 15:15:09 +00:00
window.frameEditorId = params["frameEditorId"];
2020-03-19 14:38:09 +00:00
window.parentOrigin = params["parentOrigin"];
2019-11-06 13:55:02 +00:00
if ( window.AscDesktopEditor ) {
2020-03-12 16:40:41 +00:00
window.desktop = window.AscDesktopEditor;
2019-11-06 13:55:02 +00:00
window.on_native_message = function (cmd, param) {
!window.native_message_cmd && (window.native_message_cmd = []);
window.native_message_cmd[cmd] = param;
}
}
2017-07-04 15:15:09 +00:00
</script>
<link rel="stylesheet" type="text/css" href="../../../apps/presentationeditor/main/resources/css/app.css">
2016-03-11 00:48:53 +00:00
</head>
<body>
2019-10-04 08:49:37 +00:00
<div id="loading-mask" class="loadmask">
<div class="brendpanel">
2020-12-23 17:22:31 +00:00
<div><div class="loading-logo"><img src="../../../apps/presentationeditor/main/resources/img/header/header-logo@2x.png"></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><div class="spacer"></div></div>
2019-10-04 08:49:37 +00:00
</div>
<div class="sktoolbar">
2020-12-23 17:22:31 +00:00
<ul><li/><li class="space" style="width: 76px;"/><li class="split" /><li class="space"/><li style="width: 176px;"/><li class="space"/><li style="width: 115px;"/><li class="space" style="width: 183px;"/><li style="width: 95px;"/><li class="fat"/></ul>
<ul><li/><li class="space"/><li class="big" style="width: 70px;"/><li class="split" /><li class="space"/><li style="width: 176px;"/><li class="space"/><li style="width: 115px;"/><li class="space"/><li class="big"/><li class="big"/><li class="big"/><li style="width: 95px;"/></ul>
2019-10-04 08:49:37 +00:00
</div>
<div class="placeholder">
<div class="slide-h"><div class="slide-v"><div class="slide-container"><div class="line"></div><div class="line empty"></div><div class="line"></div></div></div></div>
</div>
</div>
2019-09-12 14:11:32 +00:00
<div id="viewport"></div>
<script>
2020-03-12 16:40:41 +00:00
if ( window.desktop ) {
var logo = document.getElementsByClassName('loading-logo');
if ( !!logo && logo.length ) {
logo[0].setAttribute('style','display:none;');
}
}
2019-10-11 11:55:39 +00:00
var params = getUrlParams(),
2020-01-15 13:12:53 +00:00
notoolbar = params["toolbar"] == 'false',
2019-11-25 11:23:27 +00:00
compact = params["compact"] == 'true',
2019-10-11 11:55:39 +00:00
view = params["mode"] == 'view';
2020-01-15 13:12:53 +00:00
(compact || view || notoolbar) && document.querySelector('.brendpanel > :nth-child(2)').remove();
2019-11-25 11:23:27 +00:00
if (compact || view) {
2020-01-15 13:12:53 +00:00
if (notoolbar) {
document.querySelector('.brendpanel > :nth-child(1)').remove();
document.querySelector('.brendpanel').remove();
} else
document.querySelector('.brendpanel > :nth-child(1)').style.height = '32px';
} else if (notoolbar) {
document.querySelector('.brendpanel > :nth-child(1)').style.height = '28px';
2019-11-25 11:23:27 +00:00
}
2020-01-15 13:12:53 +00:00
if (view || notoolbar) {
2019-10-11 11:55:39 +00:00
document.querySelector('.sktoolbar').remove();
}
2019-09-12 14:11:32 +00:00
if (stopLoading) {
document.body.removeChild(document.getElementById('loading-mask'));
} else {
var elem = document.querySelector('.loading-logo img');
if (elem) {
logo && (elem.setAttribute('src', logo));
elem.style.opacity = 1;
}
}
</script>
2016-03-11 00:48:53 +00:00
<script>
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;
};
var requireTimeoutID = setTimeout(function(){
window.alert(window.requireTimeourError());
window.location.reload();
}, 30000);
var require = {
waitSeconds: 30,
callback: function(){
clearTimeout(requireTimeoutID);
}
2016-03-11 00:48:53 +00:00
};
</script>
2018-01-25 13:48:40 +00:00
<inline src="resources/img/header/buttons.svg" />
2018-04-17 12:07:30 +00:00
<inline src="resources/img/doc-formats/pptx.svg" />
2019-02-21 13:10:37 +00:00
<inline src="resources/img/doc-formats/potx.svg" />
2018-04-17 12:07:30 +00:00
<inline src="resources/img/doc-formats/pdf.svg" />
2018-07-18 11:07:24 +00:00
<inline src="resources/img/doc-formats/pdfa.svg" />
2018-04-17 12:07:30 +00:00
<inline src="resources/img/doc-formats/odp.svg" />
2019-02-21 13:10:37 +00:00
<inline src="resources/img/doc-formats/otp.svg" />
2018-04-17 12:07:30 +00:00
<inline src="resources/img/doc-formats/blank.svg" />
2019-04-01 13:10:35 +00:00
<inline src="resources/img/toolbar/shapetypes.svg" />
2020-05-06 15:04:48 +00:00
<inline src="resources/img/toolbar/charttypes.svg" />
2020-06-11 16:36:37 +00:00
<inline src="resources/img/recent-file.svg" />
2020-06-18 11:43:26 +00:00
<inline src="resources/img/file-template.svg" />
2017-05-04 12:40:15 +00:00
2016-03-11 00:48:53 +00:00
<script data-main="app" src="../../../vendor/requirejs/require.js"></script>
</body>
</html>