[Mobile] New licence type SuccessLimit.

This commit is contained in:
Julia Radzhabova 2017-04-13 10:16:59 +03:00
parent 4bf47a6e36
commit a79bfcabc5
3 changed files with 6 additions and 6 deletions

View file

@ -588,7 +588,7 @@ define([
me.permissions.review = (me.permissions.review === undefined) ? (me.permissions.edit !== false) : me.permissions.review;
me.appOptions.canAnalytics = params.asc_getIsAnalyticsEnable();
me.appOptions.canLicense = (licType === Asc.c_oLicenseResult.Success);
me.appOptions.canLicense = (licType === Asc.c_oLicenseResult.Success || licType === Asc.c_oLicenseResult.SuccessLimit);
me.appOptions.isLightVersion = params.asc_getIsLight();
/** coauthoring begin **/
me.appOptions.canCoAuthoring = !me.appOptions.isLightVersion;
@ -617,7 +617,7 @@ define([
me._state.licenseWarning = (licType===Asc.c_oLicenseResult.Connections) && me.appOptions.canEdit && me.editorConfig.mode !== 'view';
me.appOptions.canBranding = params.asc_getCanBranding() && (typeof me.editorConfig.customization == 'object');
me.appOptions.canBranding = (licType === Asc.c_oLicenseResult.Success) && (typeof me.editorConfig.customization == 'object');
me.applyModeCommonElements();
me.applyModeEditorElements();

View file

@ -543,7 +543,7 @@ define([
me.permissions.review = (me.permissions.review === undefined) ? (me.permissions.edit !== false) : me.permissions.review;
me.appOptions.canAnalytics = params.asc_getIsAnalyticsEnable();
me.appOptions.canLicense = (licType === Asc.c_oLicenseResult.Success);
me.appOptions.canLicense = (licType === Asc.c_oLicenseResult.Success || licType === Asc.c_oLicenseResult.SuccessLimit);
me.appOptions.isLightVersion = params.asc_getIsLight();
/** coauthoring begin **/
me.appOptions.canCoAuthoring = !me.appOptions.isLightVersion;
@ -572,7 +572,7 @@ define([
me._state.licenseWarning = (licType===Asc.c_oLicenseResult.Connections) && me.appOptions.canEdit && me.editorConfig.mode !== 'view';
me.appOptions.canBranding = params.asc_getCanBranding() && (typeof me.editorConfig.customization == 'object');
me.appOptions.canBranding = (licType === Asc.c_oLicenseResult.Success) && (typeof me.editorConfig.customization == 'object');
me.applyModeCommonElements();
me.applyModeEditorElements();

View file

@ -573,7 +573,7 @@ define([
me.appOptions.canAnalytics = params.asc_getIsAnalyticsEnable();
me.appOptions.isOffline = me.api.asc_isOffline();
me.appOptions.canLicense = (licType === Asc.c_oLicenseResult.Success);
me.appOptions.canLicense = (licType === Asc.c_oLicenseResult.Success || licType === Asc.c_oLicenseResult.SuccessLimit);
me.appOptions.isLightVersion = params.asc_getIsLight();
/** coauthoring begin **/
me.appOptions.canCoAuthoring = !me.appOptions.isLightVersion;
@ -582,7 +582,7 @@ define([
me.appOptions.canChat = me.appOptions.canLicense && !me.appOptions.isOffline && !((typeof (me.editorConfig.customization) == 'object') && me.editorConfig.customization.chat===false);
me.appOptions.canRename = !!me.permissions.rename;
me.appOptions.canBranding = (licType!==Asc.c_oLicenseResult.Error) && (typeof me.editorConfig.customization == 'object');
me.appOptions.canBranding = (licType === Asc.c_oLicenseResult.Success) && (typeof me.editorConfig.customization == 'object');
me.appOptions.canBrandingExt = params.asc_getCanBranding() && (typeof me.editorConfig.customization == 'object');
}