commit
01134f7d20
|
@ -922,7 +922,7 @@ define([
|
||||||
|
|
||||||
onEditorPermissions: function(params) {
|
onEditorPermissions: function(params) {
|
||||||
var licType = params.asc_getLicenseType();
|
var licType = params.asc_getLicenseType();
|
||||||
if (Asc.c_oLicenseResult.Expired === licType || Asc.c_oLicenseResult.Error === licType) {
|
if (Asc.c_oLicenseResult.Expired === licType || Asc.c_oLicenseResult.Error === licType || Asc.c_oLicenseResult.ExpiredTrial === licType) {
|
||||||
Common.UI.warning({
|
Common.UI.warning({
|
||||||
title: this.titleLicenseExp,
|
title: this.titleLicenseExp,
|
||||||
msg: this.warnLicenseExp,
|
msg: this.warnLicenseExp,
|
||||||
|
|
|
@ -53,16 +53,6 @@
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loader-page-text {
|
|
||||||
display: inline-block;
|
|
||||||
font-size: 14px;
|
|
||||||
margin-left: 80px;
|
|
||||||
margin-top: 125px;
|
|
||||||
color: #888;
|
|
||||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.romb {
|
.romb {
|
||||||
width: 40px;
|
width: 40px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
|
|
|
@ -713,7 +713,7 @@ define([
|
||||||
|
|
||||||
onEditorPermissions: function(params) {
|
onEditorPermissions: function(params) {
|
||||||
var licType = params.asc_getLicenseType();
|
var licType = params.asc_getLicenseType();
|
||||||
if (Asc.c_oLicenseResult.Expired === licType || Asc.c_oLicenseResult.Error === licType) {
|
if (Asc.c_oLicenseResult.Expired === licType || Asc.c_oLicenseResult.Error === licType || Asc.c_oLicenseResult.ExpiredTrial === licType) {
|
||||||
Common.UI.warning({
|
Common.UI.warning({
|
||||||
title: this.titleLicenseExp,
|
title: this.titleLicenseExp,
|
||||||
msg: this.warnLicenseExp,
|
msg: this.warnLicenseExp,
|
||||||
|
|
|
@ -736,7 +736,7 @@ define([
|
||||||
var licType = params ? params.asc_getLicenseType() : Asc.c_oLicenseResult.Error;
|
var licType = params ? params.asc_getLicenseType() : Asc.c_oLicenseResult.Error;
|
||||||
|
|
||||||
if ( params && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge)) {
|
if ( params && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge)) {
|
||||||
if (Asc.c_oLicenseResult.Expired === licType || Asc.c_oLicenseResult.Error === licType) {
|
if (Asc.c_oLicenseResult.Expired === licType || Asc.c_oLicenseResult.Error === licType || Asc.c_oLicenseResult.ExpiredTrial === licType) {
|
||||||
Common.UI.warning({
|
Common.UI.warning({
|
||||||
title: this.titleLicenseExp,
|
title: this.titleLicenseExp,
|
||||||
msg: this.warnLicenseExp,
|
msg: this.warnLicenseExp,
|
||||||
|
|
Loading…
Reference in a new issue