Skip to content

Commit

Permalink
[CLEANUP beta] Remove collection helper without flag
Browse files Browse the repository at this point in the history
(cherry picked from commit ba0b636)
  • Loading branch information
mixonic authored and rwjblue committed Aug 13, 2015
1 parent abdc442 commit c1caa90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ember-htmlbars/lib/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ registerKeyword('component', componentKeyword);
registerKeyword('partial', partial);
registerKeyword('input', input);
registerKeyword('textarea', textarea);
registerKeyword('collection', collection);
registerKeyword('legacy-yield', legacyYield);
registerKeyword('mut', mut);
registerKeyword('@mut', privateMut);
registerKeyword('each', each);
registerKeyword('readonly', readonly);

if (_Ember.ENV._ENABLE_LEGACY_VIEW_SUPPORT) {
registerKeyword('collection', collection);
registerKeyword('view', view);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/ember-htmlbars/tests/helpers/collection_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function firstGrandchild(view) {
return get(get(view, 'childViews').objectAt(0), 'childViews').objectAt(0);
}

QUnit.module('collection helper', {
QUnit.module('collection helper [LEGACY]', {
setup() {
originalViewKeyword = registerKeyword('view', viewKeyword);

Expand Down

0 comments on commit c1caa90

Please sign in to comment.