mohnish/money

View on GitHub
app/assets/javascripts/money/templates/repeat_intervals/index.jst.ejs

Summary

Maintainability
Test Coverage
<%
  _.each(repeatIntervals, function(repeatInterval) {
%>
<option class='repeat-interval' value='<%= repeatInterval.id %>' data-interval='<%= repeatInterval.interval %>' <%= (selectedId == repeatInterval.id) ? 'selected' : '' %>>
<%= repeatInterval.label %>
</option>
<%
  });
%>