Fixes jshint
This commit is contained in:
parent
3fe0487df7
commit
4ec62e40f1
|
@ -802,6 +802,9 @@ UI.getLargeVideoID = function () {
|
||||||
return VideoLayout.getLargeVideoID();
|
return VideoLayout.getLargeVideoID();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Shows dialog with a link to FF extension.
|
||||||
|
*/
|
||||||
UI.showExtensionRequiredDialog = function (url) {
|
UI.showExtensionRequiredDialog = function (url) {
|
||||||
APP.UI.messageHandler.openMessageDialog(
|
APP.UI.messageHandler.openMessageDialog(
|
||||||
"dialog.extensionRequired",
|
"dialog.extensionRequired",
|
||||||
|
@ -809,6 +812,6 @@ UI.showExtensionRequiredDialog = function (url) {
|
||||||
null,
|
null,
|
||||||
APP.translation.generateTranslationHTML(
|
APP.translation.generateTranslationHTML(
|
||||||
"dialog.firefoxExtensionPrompt", {url: url}));
|
"dialog.firefoxExtensionPrompt", {url: url}));
|
||||||
}
|
};
|
||||||
|
|
||||||
module.exports = UI;
|
module.exports = UI;
|
||||||
|
|
|
@ -122,7 +122,7 @@ module.exports = {
|
||||||
{
|
{
|
||||||
eventEmitter.emit(
|
eventEmitter.emit(
|
||||||
DSEvents.FIREFOX_EXTENSION_NEEDED,
|
DSEvents.FIREFOX_EXTENSION_NEEDED,
|
||||||
config.desktopSharingFirefoxExtensionURL)
|
config.desktopSharingFirefoxExtensionURL);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
fail();
|
fail();
|
||||||
|
|
Loading…
Reference in New Issue