Skip to content

Commit

Permalink
fix #307 select issue on webkit
Browse files Browse the repository at this point in the history
  • Loading branch information
syjer committed Jul 24, 2017
1 parent e82e26c commit dbd15dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/webapp/resources/js/event/attendee-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
$("select").map(function() {
var value = $(this).attr('value');
if(value && value.length > 0) {
$(this).find("option[value="+value+"]").attr('selected','selected');
$(this).val(value);
}
});
});
Expand Down

0 comments on commit dbd15dd

Please sign in to comment.