mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
Css url fixes in the iframe
This commit is contained in:
@@ -65,7 +65,11 @@ Espo.define('views/admin/index', 'view', function (Dep) {
|
||||
'css=' + encodeURIComponent(this.getConfig().get('siteUrl') + '/' + this.getThemeManager().getStylesheet())
|
||||
];
|
||||
this.iframeUrl = this.getConfig().get('adminPanelIframeUrl') || 'https://s.espocrm.com/';
|
||||
this.iframeUrl += '?' + iframeParams.join('&');
|
||||
if (~this.iframeUrl.indexOf('?')) {
|
||||
this.iframeUrl += '&' + iframeParams.join('&');
|
||||
} else {
|
||||
this.iframeUrl += '?' + iframeParams.join('&');
|
||||
}
|
||||
|
||||
if (!this.getConfig().get('adminNotificationsDisabled')) {
|
||||
this.createView('notificationsPanel', 'views/admin/panels/notifications', {
|
||||
|
||||
Reference in New Issue
Block a user