Fix Bug 33115.
This commit is contained in:
parent
3040a32430
commit
b304d3e651
|
@ -46,6 +46,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: #f4f4f4;
|
background-color: #f4f4f4;
|
||||||
|
z-index: 10;
|
||||||
|
|
||||||
.message-block {
|
.message-block {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
|
@ -199,6 +199,22 @@
|
||||||
<!--twitter button-->
|
<!--twitter button-->
|
||||||
|
|
||||||
<script>
|
<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]) < 9.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() {
|
function getUrlParams() {
|
||||||
var e,
|
var e,
|
||||||
a = /\+/g, // Regex for replacing addition symbol with a space
|
a = /\+/g, // Regex for replacing addition symbol with a space
|
||||||
|
|
|
@ -189,6 +189,22 @@
|
||||||
<!--twitter button-->
|
<!--twitter button-->
|
||||||
|
|
||||||
<script>
|
<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]) < 9.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() {
|
function getUrlParams() {
|
||||||
var e,
|
var e,
|
||||||
a = /\+/g, // Regex for replacing addition symbol with a space
|
a = /\+/g, // Regex for replacing addition symbol with a space
|
||||||
|
|
|
@ -181,6 +181,23 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script>
|
<script>
|
||||||
|
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);
|
||||||
|
if (m && parseFloat(m[1]) < 9.0) {
|
||||||
|
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, Document 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() {
|
function getUrlParams() {
|
||||||
var e,
|
var e,
|
||||||
a = /\+/g, // Regex for replacing addition symbol with a space
|
a = /\+/g, // Regex for replacing addition symbol with a space
|
||||||
|
@ -219,6 +236,7 @@
|
||||||
else if ( lang == 'sl') loading = 'Nalaganje...';
|
else if ( lang == 'sl') loading = 'Nalaganje...';
|
||||||
else if ( lang == 'tr') loading = 'Yükleniyor...';
|
else if ( lang == 'tr') loading = 'Yükleniyor...';
|
||||||
|
|
||||||
|
if (!stopLoading)
|
||||||
document.write(
|
document.write(
|
||||||
'<div id="loading-mask" class="loadmask">' +
|
'<div id="loading-mask" class="loadmask">' +
|
||||||
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
||||||
|
|
|
@ -181,6 +181,23 @@
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
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);
|
||||||
|
if (m && parseFloat(m[1]) < 9.0) {
|
||||||
|
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, Document 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() {
|
function getUrlParams() {
|
||||||
var e,
|
var e,
|
||||||
a = /\+/g, // Regex for replacing addition symbol with a space
|
a = /\+/g, // Regex for replacing addition symbol with a space
|
||||||
|
@ -219,6 +236,7 @@
|
||||||
else if ( lang == 'sl') loading = 'Nalaganje...';
|
else if ( lang == 'sl') loading = 'Nalaganje...';
|
||||||
else if ( lang == 'tr') loading = 'Yükleniyor...';
|
else if ( lang == 'tr') loading = 'Yükleniyor...';
|
||||||
|
|
||||||
|
if (!stopLoading)
|
||||||
document.write(
|
document.write(
|
||||||
'<div id="loading-mask" class="loadmask">' +
|
'<div id="loading-mask" class="loadmask">' +
|
||||||
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
||||||
|
|
|
@ -198,6 +198,22 @@
|
||||||
<!--twitter button-->
|
<!--twitter button-->
|
||||||
|
|
||||||
<script>
|
<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]) < 9.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() {
|
function getUrlParams() {
|
||||||
var e,
|
var e,
|
||||||
a = /\+/g, // Regex for replacing addition symbol with a space
|
a = /\+/g, // Regex for replacing addition symbol with a space
|
||||||
|
|
|
@ -189,6 +189,22 @@
|
||||||
<!--twitter button-->
|
<!--twitter button-->
|
||||||
|
|
||||||
<script>
|
<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]) < 9.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() {
|
function getUrlParams() {
|
||||||
var e,
|
var e,
|
||||||
a = /\+/g, // Regex for replacing addition symbol with a space
|
a = /\+/g, // Regex for replacing addition symbol with a space
|
||||||
|
|
|
@ -182,6 +182,23 @@
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
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);
|
||||||
|
if (m && parseFloat(m[1]) < 9.0) {
|
||||||
|
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() {
|
function getUrlParams() {
|
||||||
var e,
|
var e,
|
||||||
a = /\+/g, // Regex for replacing addition symbol with a space
|
a = /\+/g, // Regex for replacing addition symbol with a space
|
||||||
|
@ -220,6 +237,7 @@
|
||||||
else if ( lang == 'sl') loading = 'Nalaganje...';
|
else if ( lang == 'sl') loading = 'Nalaganje...';
|
||||||
else if ( lang == 'tr') loading = 'Yükleniyor...';
|
else if ( lang == 'tr') loading = 'Yükleniyor...';
|
||||||
|
|
||||||
|
if (!stopLoading)
|
||||||
document.write(
|
document.write(
|
||||||
'<div id="loading-mask" class="loadmask">' +
|
'<div id="loading-mask" class="loadmask">' +
|
||||||
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
||||||
|
|
|
@ -181,6 +181,23 @@
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
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);
|
||||||
|
if (m && parseFloat(m[1]) < 9.0) {
|
||||||
|
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() {
|
function getUrlParams() {
|
||||||
var e,
|
var e,
|
||||||
a = /\+/g, // Regex for replacing addition symbol with a space
|
a = /\+/g, // Regex for replacing addition symbol with a space
|
||||||
|
@ -219,6 +236,7 @@
|
||||||
else if ( lang == 'sl') loading = 'Nalaganje...';
|
else if ( lang == 'sl') loading = 'Nalaganje...';
|
||||||
else if ( lang == 'tr') loading = 'Yükleniyor...';
|
else if ( lang == 'tr') loading = 'Yükleniyor...';
|
||||||
|
|
||||||
|
if (!stopLoading)
|
||||||
document.write(
|
document.write(
|
||||||
'<div id="loading-mask" class="loadmask">' +
|
'<div id="loading-mask" class="loadmask">' +
|
||||||
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
||||||
|
|
|
@ -198,6 +198,22 @@
|
||||||
<!--twitter button-->
|
<!--twitter button-->
|
||||||
|
|
||||||
<script>
|
<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]) < 9.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() {
|
function getUrlParams() {
|
||||||
var e,
|
var e,
|
||||||
a = /\+/g, // Regex for replacing addition symbol with a space
|
a = /\+/g, // Regex for replacing addition symbol with a space
|
||||||
|
|
|
@ -189,6 +189,22 @@
|
||||||
<!--twitter button-->
|
<!--twitter button-->
|
||||||
|
|
||||||
<script>
|
<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]) < 9.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() {
|
function getUrlParams() {
|
||||||
var e,
|
var e,
|
||||||
a = /\+/g, // Regex for replacing addition symbol with a space
|
a = /\+/g, // Regex for replacing addition symbol with a space
|
||||||
|
|
|
@ -184,6 +184,23 @@
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
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);
|
||||||
|
if (m && parseFloat(m[1]) < 9.0) {
|
||||||
|
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>');
|
||||||
|
stopLoading = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function getUrlParams() {
|
function getUrlParams() {
|
||||||
var e,
|
var e,
|
||||||
a = /\+/g, // Regex for replacing addition symbol with a space
|
a = /\+/g, // Regex for replacing addition symbol with a space
|
||||||
|
@ -222,6 +239,7 @@
|
||||||
else if ( lang == 'sl') loading = 'Nalaganje...';
|
else if ( lang == 'sl') loading = 'Nalaganje...';
|
||||||
else if ( lang == 'tr') loading = 'Yükleniyor...';
|
else if ( lang == 'tr') loading = 'Yükleniyor...';
|
||||||
|
|
||||||
|
if (!stopLoading)
|
||||||
document.write(
|
document.write(
|
||||||
'<div id="loading-mask" class="loadmask">' +
|
'<div id="loading-mask" class="loadmask">' +
|
||||||
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
||||||
|
|
|
@ -182,6 +182,23 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script>
|
<script>
|
||||||
|
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);
|
||||||
|
if (m && parseFloat(m[1]) < 9.0) {
|
||||||
|
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>');
|
||||||
|
stopLoading = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function getUrlParams() {
|
function getUrlParams() {
|
||||||
var e,
|
var e,
|
||||||
a = /\+/g, // Regex for replacing addition symbol with a space
|
a = /\+/g, // Regex for replacing addition symbol with a space
|
||||||
|
@ -220,6 +237,7 @@
|
||||||
else if ( lang == 'sl') loading = 'Nalaganje...';
|
else if ( lang == 'sl') loading = 'Nalaganje...';
|
||||||
else if ( lang == 'tr') loading = 'Yükleniyor...';
|
else if ( lang == 'tr') loading = 'Yükleniyor...';
|
||||||
|
|
||||||
|
if (!stopLoading)
|
||||||
document.write(
|
document.write(
|
||||||
'<div id="loading-mask" class="loadmask">' +
|
'<div id="loading-mask" class="loadmask">' +
|
||||||
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
||||||
|
|
Loading…
Reference in a new issue