2017-07-20 10:52:55 +00:00
<!DOCTYPE html>
2018-06-21 10:17:28 +00:00
< html style = "width:100%; height:100%;overflow: hidden;" >
2017-07-20 10:52:55 +00:00
< head >
2018-11-22 13:24:56 +00:00
< title > Presenter View< / title >
2017-07-20 10:52:55 +00:00
< 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 >
2021-02-22 13:58:25 +00:00
.theme-dark {
--toolbar-header-presentation: #2a2a2a;
--canvas-background: #666666;
/*--canvas-content-background: #fff;*/
--canvas-page-border: #555;
}
2017-07-20 10:52:55 +00:00
.loadmask {
left: 0;
top: 0;
position: absolute;
height: 100%;
width: 100%;
overflow: hidden;
border: none;
2021-02-22 14:23:58 +00:00
background: #f0f0f0;
2021-02-22 13:58:25 +00:00
background: var(--canvas-background, #f0f0f0);
2019-07-23 08:08:43 +00:00
z-index: 10000;
2017-07-20 10:52:55 +00:00
}
2019-07-23 08:08:43 +00:00
.loadmask > .brendpanel {
width: 100%;
height: 56px;
2021-02-22 14:23:58 +00:00
background: #aa5252;
2021-02-22 13:58:25 +00:00
background: var(--toolbar-header-presentation, #aa5252);
2017-07-20 10:52:55 +00:00
}
2019-07-23 08:08:43 +00:00
.loadmask > .brendpanel > div {
display: flex;
align-items: center;
2017-07-20 10:52:55 +00:00
}
2019-07-23 08:08:43 +00:00
.loadmask > .brendpanel .spacer {
margin-left: auto;
2017-07-20 10:52:55 +00:00
}
2019-07-23 08:08:43 +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);
2017-07-20 10:52:55 +00:00
}
2019-07-23 08:08:43 +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);
2017-07-20 10:52:55 +00:00
}
2019-07-23 08:08:43 +00:00
.loadmask > .placeholder {
display: flex;
flex-direction: column;
min-height: 100%;
margin: 0 100px;
2017-07-20 10:52:55 +00:00
}
2019-07-23 08:08:43 +00:00
.loadmask > .placeholder .slide-h {
display: flex;
flex-direction: column;
justify-content: center;
flex-grow: 1;
max-width: 1350px;
width: 100%;
2017-07-20 10:52:55 +00:00
}
2019-07-23 08:08:43 +00:00
.loadmask > .placeholder .slide-v {
display: flex;
position: relative;
flex-direction: column;
2019-10-11 11:00:16 +00:00
padding-bottom: 80%;
2017-07-20 10:52:55 +00:00
}
2019-07-23 08:08:43 +00:00
.loadmask > .placeholder .slide-container {
position: absolute;
height: 100%;
width: 100%;
2021-02-22 14:23:58 +00:00
background: #fff;
2021-02-22 13:58:25 +00:00
background: var(--canvas-content-background, #fff);
2021-02-22 14:23:58 +00:00
border: 1px solid #ccc;
2021-02-22 13:58:25 +00:00
border: var(--scaled-one-px-value, 1px) solid var(--canvas-page-border, #ccc);
2017-07-20 10:52:55 +00:00
2019-07-23 08:08:43 +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;
2017-07-20 10:52:55 +00:00
}
2019-07-23 08:08:43 +00:00
.loadmask > .placeholder .slide-container > .line {
2019-09-27 15:43:55 +00:00
height: 20%;
margin: 0 120px;
2019-07-23 08:08:43 +00:00
border-radius: 6px;
background: #f5f5f5;
2017-07-20 10:52:55 +00:00
}
2019-09-27 15:43:55 +00:00
.loadmask > .placeholder .slide-container > .line.empty {
background: transparent;
}
2019-07-23 08:08:43 +00:00
.loadmask > .placeholder .slide-container > .line:nth-child(1) {
2019-09-27 15:43:55 +00:00
height: 30%;
2019-10-11 11:00:16 +00:00
margin: 80px 80px 0;
2017-07-20 10:52:55 +00:00
}
2019-07-23 08:08:43 +00:00
@keyframes flickerAnimation {
0% { opacity:1; }
50% { opacity:0.3; }
100% { opacity:1; }
}
@-o-keyframes flickerAnimation{
0% { opacity:1; }
50% { opacity:0.3; }
100% { opacity:1; }
}
@-moz-keyframes flickerAnimation{
0% { opacity:1; }
50% { opacity:0.3; }
100% { opacity:1; }
}
@-webkit-keyframes flickerAnimation{
0% { opacity:1; }
50% { opacity:0.3; }
100% { opacity:1; }
2017-07-20 10:52:55 +00:00
}
< / style >
< script >
2020-08-26 14:24:52 +00:00
// don't add zoom for mobile devices
2021-01-20 21:05:31 +00:00
// 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 08:49:44 +00:00
2017-07-28 12:11:06 +00:00
window.onbeforeunload = function() {
window.postMessage("{ \"reporter_command\" : \"end\" }", "*");
};
2017-07-20 10:52:55 +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-20 10:52:55 +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;
}
}
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-13 08:18:18 +00:00
presenter = 'Presenter View';
2017-07-20 10:52:55 +00:00
window.frameEditorId = params["frameEditorId"];
2020-03-19 14:38:09 +00:00
window.parentOrigin = params["parentOrigin"];
2017-07-20 10:52:55 +00:00
2019-07-23 08:08:43 +00:00
if ( lang == 'bg') { presenter = 'Изглед на презентатора';}
else if ( lang == 'cs') { presenter = 'Zobrazení přednášejícího';}
else if ( lang == 'de') { presenter = 'Referentenansicht';}
else if ( lang == 'es') { presenter = 'Vista del presentador';}
else if ( lang == 'fr') { presenter = 'Mode présentateur';}
else if ( lang == 'it') { presenter = 'Visualizzazione del presenter';}
else if ( lang == 'pl') { presenter = 'Widok Prezentera';}
else if ( lang == 'pt') { presenter = 'Vista de apresentador';}
else if ( lang == 'ru') { presenter = 'Режим докладчика';}
else if ( lang == 'sk') { presenter = 'Režim prezentácie';}
2019-06-27 13:22:47 +00:00
else if ( lang == 'zh') { presenter = '演示者视图';}
window.document.title = presenter;
2017-07-20 10:52:55 +00:00
< / script >
< style >
body {
margin: 0;
}
< / style >
< / head >
< body >
2019-10-11 11:00:16 +00:00
< div id = "loading-mask" class = "loadmask" > < 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-07-23 08:08:43 +00:00
< script >
if (stopLoading) {
document.body.removeChild(document.getElementById('loading-mask'));
}
< / script >
2017-07-21 14:56:50 +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 >
2019-12-03 10:29:58 +00:00
< script type = "text/javascript" src = "../../../../sdkjs/develop/sdkjs/slide/scripts.js" > < / script >
2017-07-20 10:52:55 +00:00
< script >
2019-12-03 10:29:58 +00:00
window.sdk_scripts.forEach(function(item){
2017-07-21 14:43:53 +00:00
document.write('< script type = "text/javascript" src = "' + item + '" > < \ / s c r i p t > ' ) ;
});
2017-07-20 10:52:55 +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 = 'Слишком медленное соединение, не удается загрузить некоторые компоненты. Пожалуйста, обновите страницу.';
2021-12-09 10:54:03 +00:00
else if ( lang == 'tr') reqerr = 'Bağlantı çok yavaş, bileşenlerin bazı ları yüklenemedi. Lütfen sayfayı yenileyin.';
2017-07-20 10:52:55 +00:00
else reqerr = 'The connection is too slow, some of the components could not be loaded. Please reload the page.';
return reqerr;
};
< / script >
< div id = "editor_sdk" style = "position: absolute;width: 100%;height: 100%;" > < / div >
2017-07-21 14:43:53 +00:00
< script data-main = "app_dev.reporter" src = "../../../vendor/requirejs/require.js" > < / script >
2017-07-20 10:52:55 +00:00
< / body >
< / html >