Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve/refactor outlets and view creation #5264

Closed
5 tasks
wagenet opened this issue Jul 28, 2014 · 2 comments
Closed
5 tasks

Improve/refactor outlets and view creation #5264

wagenet opened this issue Jul 28, 2014 · 2 comments

Comments

@wagenet
Copy link
Member

wagenet commented Jul 28, 2014

@ultimatemonty
Copy link

First off thanks for all you guys do in making Ember awesome!

Curious if there has been any progress on this front? The suggested work around from #3119 seems to be not as clean as hoped when using templates nested several levels deep. An example of my nesting is

this.route('module', function() {
   this.route('sub-module-1', function () {
      this.route('feature', function () {
         this.route('sub-feature');
      });
   });

   this.route('sub-module-2', function () {
      this.route('feature', function () {
         this.route('sub-feature');
      });
   });

   this.route('sub-module-3', function () {
      this.route('feature', function () {
         this.route('sub-feature');
      });
   });
});

In my case I'm seeing an issue where the template for a sub-module will not always clear out when transitioning to another sub-module at the same level.

@stefanpenner
Copy link
Member

i think @ef4's recent work sorts most of this out.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants