Browse Source

Fixes some welcome page minor issues.

master
hristoterezov 11 years ago
parent
commit
b82786947a
2 changed files with 5 additions and 3 deletions
  1. 2
    1
      app.js
  2. 3
    2
      css/welcome_page.css

+ 2
- 1
app.js View File

1027
 }
1027
 }
1028
 
1028
 
1029
 $(document).ready(function () {
1029
 $(document).ready(function () {
1030
+    document.title = brand.appName;
1030
 
1031
 
1031
     if(config.enableWelcomePage && window.location.pathname == "/" &&
1032
     if(config.enableWelcomePage && window.location.pathname == "/" &&
1032
         (!window.localStorage.welcomePageDisabled || window.localStorage.welcomePageDisabled == "false"))
1033
         (!window.localStorage.welcomePageDisabled || window.localStorage.welcomePageDisabled == "false"))
1033
     {
1034
     {
1034
         $("#videoconference_page").hide();
1035
         $("#videoconference_page").hide();
1035
-        $("#domain_name").text(window.location.host + "/");
1036
+        $("#domain_name").text(window.location.protocol + "//" + window.location.host + "/");
1036
         $("span[name='appName']").text(brand.appName);
1037
         $("span[name='appName']").text(brand.appName);
1037
         function enter_room()
1038
         function enter_room()
1038
         {
1039
         {

+ 3
- 2
css/welcome_page.css View File

189
     float:left;
189
     float:left;
190
     width: 169px;
190
     width: 169px;
191
     padding-left: 75px;
191
     padding-left: 75px;
192
+    padding-bottom: 30px;
192
 }
193
 }
193
 
194
 
194
 .feature_icon
195
 .feature_icon
203
     /*font-weight: bold;*/
204
     /*font-weight: bold;*/
204
     text-align: center;
205
     text-align: center;
205
     display: table-cell;
206
     display: table-cell;
206
-    padding: 50px 29px 0px 17px;
207
+    padding: 50px 26px 0px 20px;
207
 }
208
 }
208
 
209
 
209
 .feature_description
210
 .feature_description
210
 {
211
 {
211
-    width: 169px;
212
+    width: 190px;
212
     font-family: Helvetica;
213
     font-family: Helvetica;
213
     color: #ffffff;
214
     color: #ffffff;
214
     font-size: 16px;
215
     font-size: 16px;

Loading…
Cancel
Save