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:
commit
a1c691059f
@ -1,5 +1,5 @@
|
||||
function setTitle(title){
|
||||
document.title=title;
|
||||
document.title= "BigBlueButton - " + title;
|
||||
}
|
||||
|
||||
var i = 1;
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user