From 9546e5fee158b2307534a116c5b51e7f995d11f3 Mon Sep 17 00:00:00 2001 From: "R. Aidan Campbell" Date: Sun, 19 Jun 2016 07:57:43 -0400 Subject: [PATCH] fixed issue where add icon didn't show the add host dialog --- static/js/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/static/js/index.js b/static/js/index.js index af0a6e1..02913a9 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -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);