diff --git a/app.js b/app.js
index 2a7edbb21d..e7b652ce30 100644
--- a/app.js
+++ b/app.js
@@ -1142,7 +1142,7 @@ function getCameraVideoSize(videoWidth,
}
$(document).ready(function () {
- document.title = brand.appName;
+ document.title = interfaceConfig.APP_NAME;
if(APIConnector.isEnabled())
APIConnector.init();
@@ -1153,7 +1153,7 @@ $(document).ready(function () {
$("#videoconference_page").hide();
$("#domain_name").text(
window.location.protocol + "//" + window.location.host + "/");
- $("span[name='appName']").text(brand.appName);
+ $("span[name='appName']").text(interfaceConfig.APP_NAME);
if (interfaceConfig.SHOW_JITSI_WATERMARK) {
var leftWatermarkDiv
diff --git a/brand.js b/brand.js
deleted file mode 100644
index 7a81a7e416..0000000000
--- a/brand.js
+++ /dev/null
@@ -1,4 +0,0 @@
-var brand =
-{
- appName: "Jitsi Meet"
-}
diff --git a/config.js b/config.js
index 1cddd4e47e..5133153c62 100644
--- a/config.js
+++ b/config.js
@@ -27,5 +27,4 @@ var config = {
enableRecording: false,
enableWelcomePage: false,
enableSimulcast: false,
- isBrand: false
};
diff --git a/index.html b/index.html
index 0def7dd2d6..389d558101 100644
--- a/index.html
+++ b/index.html
@@ -28,13 +28,12 @@
-
-
+
-
+
diff --git a/interface_config.js b/interface_config.js
index fbdbaaa039..b8e836033e 100644
--- a/interface_config.js
+++ b/interface_config.js
@@ -11,5 +11,6 @@ var interfaceConfig = {
SHOW_BRAND_WATERMARK: false,
BRAND_WATERMARK_LINK: "",
SHOW_POWERED_BY: false,
- GENERATE_ROOMNAMES_ON_WELCOME_PAGE: true
+ GENERATE_ROOMNAMES_ON_WELCOME_PAGE: true,
+ APP_NAME: "Jitsi Meet"
};