Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Fix formbuilder radio template for > v3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
interactivellama committed May 5, 2015
1 parent e81e182 commit 689d20b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<label class="control-label" for="<%= name %>"><%= label %></label>
<div class="controls">
<% _.each(radios, function(radio, i){ %>
<div class="radio" data-initialize="radio" >
<label class="radio-custom" for="<%= name+'-'+i %>">
<div class="radio" >
<label class="radio-custom" data-initialize="radio" for="<%= name+'-'+i %>">
<input class="sr-only" id="<%= name+'-'+i %>" name="<%= name %>" type="radio" value="<%= radio %>">
<%= radio %>
</label>
Expand Down

0 comments on commit 689d20b

Please sign in to comment.