Navigation Menu

Skip to content
This repository has been archived by the owner on Jul 11, 2020. It is now read-only.

Commit

Permalink
fix: radio buttons not selectable in some browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
knipknap committed Nov 5, 2017
1 parent ca68ff9 commit 37fb0ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spiffform/spiffform.js
Expand Up @@ -1425,7 +1425,8 @@ var SpiffFormRadioList = function() {

this.select = function(radio) {
this._value = radio;
this.update();
this._div.find('input[value=' + radio + ']').prop('checked', true);
this.validate();
};

this.validate = function() {
Expand Down

0 comments on commit 37fb0ed

Please sign in to comment.