From 8b2095227c081971a3e657bfe2dd581d03337f3a Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Tue, 26 Feb 2019 16:43:38 -0500 Subject: [PATCH] Add case for updating the UI when second projector connected. --- app/lib/ui/devices.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/lib/ui/devices.js b/app/lib/ui/devices.js index 95a320a..1dc4913 100644 --- a/app/lib/ui/devices.js +++ b/app/lib/ui/devices.js @@ -77,6 +77,9 @@ devices.ready = function (event, arg) { if (arg && arg.profile) { $('#profile').val(arg.profile) //devices.profile(arg.profile) + } + if (arg.projector_second) { + } return event.returnValue = true; };