You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(note: Can't find a repo for the projects from the projects page. I see the blank template for a project... but can't find blinky lights anywhere but distribution.
In the JS buttonupdate code, the returned value is parsed as an integer, but then the non-parsed value is tested.
var val = parseInt( d );
if ( d === 1 ) {
$("#buttonval").addClass('on');
} else {
$("#buttonval").removeClass('on');
}
seems like that should be
var val = parseInt( d );
if ( val === 1 ) {
$("#buttonval").addClass('on');
} else {
$("#buttonval").removeClass('on');
}
The text was updated successfully, but these errors were encountered:
(note: Can't find a repo for the projects from the projects page. I see the blank template for a project... but can't find blinky lights anywhere but distribution.
In the JS buttonupdate code, the returned value is parsed as an integer, but then the non-parsed value is tested.
seems like that should be
The text was updated successfully, but these errors were encountered: