Fix case issue for accesstoken

This commit is contained in:
Alexandre Beloin 2015-01-30 00:29:45 -05:00
parent c62d8f2c79
commit cb68f649ea
1 changed files with 1 additions and 1 deletions

View File

@ -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);