Merge pull request #233 from SenecaCDOT-BigBlueButton/move-title-prefix

moved the client title prefix to javascript for easier modification
This commit is contained in:
Chad Pilkey 2013-08-19 07:30:15 -07:00
commit a1c691059f
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
function setTitle(title){
document.title=title;
document.title= "BigBlueButton - " + title;
}
var i = 1;

View File

@ -105,7 +105,7 @@ package org.bigbluebutton.main.model.users
}
// assign the meeting name to the document title
ExternalInterface.call("setTitle", "BigBlueButton - " + _conferenceParameters.meetingName);
ExternalInterface.call("setTitle", _conferenceParameters.meetingName);
/**
* Temporarily store the parameters in global BBB so we get easy access to it.