Sha256: c99eb6655ce40c3aff9d66f7202fe8f47c87eb29678f27ba57a6f4b501cb4d6e
Contents?: true
Size: 669 Bytes
Versions: 56
Compression:
Stored size: 669 Bytes
Contents
<!--<% _.each(options, function(option, index) { %> <select id="<%= 'option' + (index + 1) %>" name="<%= option.name %>"> <option value="">Choose an Option</option> <% _.each(option.values, function(value) { %> <option value="<%= value %>"><%= value %></option> <% }); %> </select> <% }); %>--> <% _.each(options, function(option, index) { %> <h3><%= option.name %></h3> <ul id="<%= 'option' + (index + 1) %>" data-name="<%= option.name %>"> <% _.each(_.sortBy(option.values, function(option) { return parseFloat(option) }), function(value) { %> <li data-value="<%= value %>"><%= value %></li> <% }); %> </ul> <% }); %>
Version data entries
56 entries across 56 versions & 2 rubygems