From cb68f649ea1d725249d13ca27daafe05f4e8a7e8 Mon Sep 17 00:00:00 2001 From: Alexandre Beloin Date: Fri, 30 Jan 2015 00:29:45 -0500 Subject: [PATCH] Fix case issue for accesstoken --- gui/slick/js/configNotifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/slick/js/configNotifications.js b/gui/slick/js/configNotifications.js index 2851bc53..9676d862 100644 --- a/gui/slick/js/configNotifications.js +++ b/gui/slick/js/configNotifications.js @@ -102,7 +102,7 @@ $(document).ready(function(){ $('#boxcar2_accesstoken').removeClass('warning'); $(this).prop('disabled', true); $('#testBoxcar2-result').html(loading); - $.get(sbRoot + '/home/testBoxcar2', {'accessToken': boxcar2_accesstoken}) + $.get(sbRoot + '/home/testBoxcar2', {'accesstoken': boxcar2_accesstoken}) .done(function (data) { $('#testBoxcar2-result').html(data); $('#testBoxcar2').prop('disabled', false);