mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-28 00:12:24 +08:00
Merge pull request #2587 from ONLYOFFICE/feature/fix-bugs
Feature/fix bugs
This commit is contained in:
@ -615,7 +615,7 @@
|
||||
|
||||
&.popover__titled {
|
||||
.popover-arrow:after {
|
||||
background: @brandColor;
|
||||
background: @toolbar-background;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -77,6 +77,7 @@ export class storeAppOptions {
|
||||
this.canAnalytics = params.asc_getIsAnalyticsEnable();
|
||||
this.canLicense = (licType === Asc.c_oLicenseResult.Success || licType === Asc.c_oLicenseResult.SuccessLimit);
|
||||
this.isLightVersion = params.asc_getIsLight();
|
||||
this.buildVersion = params.asc_getBuildVersion();
|
||||
this.canCoAuthoring = !this.isLightVersion;
|
||||
this.isOffline = Common.EditorApi.get().asc_isOffline();
|
||||
this.isReviewOnly = (permissions.review === true) && (permissions.edit === false);
|
||||
|
||||
@ -89,6 +89,7 @@ export class storeAppOptions {
|
||||
this.canAnalytics = params.asc_getIsAnalyticsEnable();
|
||||
this.canLicense = (licType === Asc.c_oLicenseResult.Success || licType === Asc.c_oLicenseResult.SuccessLimit);
|
||||
this.isLightVersion = params.asc_getIsLight();
|
||||
this.buildVersion = params.asc_getBuildVersion();
|
||||
this.canCoAuthoring = !this.isLightVersion;
|
||||
this.isOffline = Common.EditorApi.get().asc_isOffline();
|
||||
this.canRequestEditRights = this.config.canRequestEditRights;
|
||||
|
||||
Reference in New Issue
Block a user