From 37929de36ececc0b8d7d632094971fa081416299 Mon Sep 17 00:00:00 2001 From: Seth Call Date: Fri, 11 Dec 2015 07:02:37 -0600 Subject: [PATCH] * fix bad coffeescript syntax --- .../react-components/ConfigureLiveTracksDialog.js.jsx.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/app/assets/javascripts/react-components/ConfigureLiveTracksDialog.js.jsx.coffee b/web/app/assets/javascripts/react-components/ConfigureLiveTracksDialog.js.jsx.coffee index 555dfcc29..633d69030 100644 --- a/web/app/assets/javascripts/react-components/ConfigureLiveTracksDialog.js.jsx.coffee +++ b/web/app/assets/javascripts/react-components/ConfigureLiveTracksDialog.js.jsx.coffee @@ -329,9 +329,9 @@ ConfigureTracksStore = @ConfigureTracksStore $radio = $root.find('input[type="radio"]') if gon.midi_enabled - if $radio.iCheck('disable') + $radio.iCheck('disable') else - if $radio.iCheck('enable') + $radio.iCheck('enable') componentDidUpdate: () -> $root = $(@getDOMNode())