Skip to content

Commit

Permalink
[BUGFIX beta] fix ES3 compatibility
Browse files Browse the repository at this point in the history
@machty pointed out that #10372 uses an ES5-only feature.
  • Loading branch information
ef4 authored and rwjblue committed Feb 15, 2015
1 parent a2d8cac commit ac6639b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ember-routing/lib/system/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -1004,7 +1004,7 @@ function appendLiveRoute(liveRoutes, defaultParentState, renderOptions) {
var target;
var myState = {
render: renderOptions,
outlets: Object.create(null)
outlets: create(null)
};
if (renderOptions.into) {
target = findLiveRoute(liveRoutes, renderOptions.into);
Expand Down

0 comments on commit ac6639b

Please sign in to comment.