File tree Expand file tree Collapse file tree 4 files changed +29
-0
lines changed Expand file tree Collapse file tree 4 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ for label in @columnLabels
2+ __out .push ' \n <select>\n <option value=\'\' >\n Please select a form field label.\n </option>\n </select>\n\n '
3+ if label
4+ __out .push ' \n <i class=\' column-alert\' title=\' one\' ></i>\n '
5+ else
6+ __out .push ' \n <i class=\' column-alert\' title=\' Values in this column will not\' ></i>\n '
7+ __out .push ' \n '
8+ __out .push ' \n '
Original file line number Diff line number Diff line change 1+ <% for label in @columnLabels: %>
2+ <select>
3+ <option value=''>
4+ Please select a form field label.
5+ </option>
6+ </select>
7+
8+ <% if label: %>
9+ <i class='column-alert' title='one'></i>
10+ <% else: %>
11+ <i class='column-alert' title='Values in this column will not'></i>
12+ <% end %>
13+ <% end %>
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ module.exports =
66 test .ok eco .compile fixture (" hello.eco" )
77 test .done ()
88
9+ " compiling fixtures/end_of_input.eco " : (test ) ->
10+ test .ok eco .compile fixture (" end_of_input.eco" )
11+ test .done ()
12+
913 " compiling fixtures/projects.eco " : (test ) ->
1014 test .ok eco .compile fixture (" projects.eco" )
1115 test .done ()
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ module.exports =
66 test .same fixture (" hello.coffee" ), preprocess fixture (" hello.eco" )
77 test .done ()
88
9+ " preprocessing fixtures/end_of_input.eco " : (test ) ->
10+ test .same fixture (" end_of_input.coffee" ), preprocess fixture (" end_of_input.eco" )
11+ test .done ()
12+
913 " preprocessing fixtures/projects.eco " : (test ) ->
1014 test .same fixture (" projects.coffee" ), preprocess fixture (" projects.eco" )
1115 test .done ()
You can’t perform that action at this time.
0 commit comments