Fixing semi-colons to hush lint message

This commit is contained in:
Robert Smallwood 2015-12-09 15:43:31 -07:00 committed by Mike Girard
parent 816fbea29d
commit 7cf3bcd2db
1 changed files with 2 additions and 2 deletions

View File

@ -218,13 +218,13 @@ function registerListeners() {
DesktopSharingEventTypes.EXTENSTION_VERSION_ERROR,
function () {
APP.UI.messageHandler.showError("dialog.error",
"dialog.detectext")
"dialog.detectext");
});
APP.desktopsharing.addListener(
DesktopSharingEventTypes.EXTENSION_INSTALLATION_ERROR,
function () {
APP.UI.messageHandler.showError("dialog.error",
"dialog.failtoinstall")
"dialog.failtoinstall");
});
APP.connectionquality.addListener(CQEvents.LOCALSTATS_UPDATED,
VideoLayout.updateLocalConnectionStats);