SDA-1581 - Set document title for all the window (#803)

This commit is contained in:
Kiran Niranjan 2019-11-11 18:12:44 +05:30 committed by GitHub
parent d6ba2d7a0a
commit 228ff9ad7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,21 +43,26 @@ const load = () => {
break;
case components.screenPicker:
loadStyle(components.screenPicker);
document.title = 'Screen Picker - Symphony';
component = ScreenPicker;
break;
case components.screenSharingIndicator:
loadStyle(components.screenSharingIndicator);
document.title = 'Screen Sharing Indicator - Symphony';
component = ScreenSharingIndicator;
break;
case components.basicAuth:
loadStyle(components.basicAuth);
document.title = 'Basic Authentication - Symphony';
component = BasicAuth;
break;
case components.notification:
loadStyle(components.notification);
document.title = 'Notification - Symphony';
component = NotificationComp;
break;
case components.notificationSettings:
document.title = 'Notification Settings - Symphony';
loadStyle(components.notificationSettings);
component = NotificationSettings;
break;