fixed issue where add icon didn't show the add host dialog

This commit is contained in:
R. Aidan Campbell 2016-06-19 07:57:43 -04:00
parent ee76cfc861
commit 9546e5fee1

View File

@ -14,6 +14,7 @@ function attachListeners() {
$('#bitrateSlider').on('change', saveBitrate); // change occurs once the mouse lets go.
$('#hostChosen').on('click', hostChosen);
$('#addHostCell').on('click', addHost);
$('#addHostIcon').on('click', addHost); // duplicate, because clicking the icon inside the button requires a different listener
$('#cancelAddHost').on('click', cancelAddHost);
$('#continueAddHost').on('click', continueAddHost);
$('#forgetHost').on('click', forgetHost);