angular / router

The Angular 1 Component Router
MIT License
665 stars 135 forks source link

Extra div by using ng-outlet #377

Closed Zizzamia closed 8 years ago

Zizzamia commented 8 years ago

In my page by using ng-outlet.

<ng-outlet class="app"></ng-outlet>

I aspect something like, where month-cmp it's just my directive view.

<ng-outlet class="app" month-cmp>
  <div class="tasks"><div>
</div>

Instead I have an extra div that will start creating some possible css conflict.

<ng-outlet class="app ng-scope" month-cmp>
  <div month-cmp>
    <div class="tasks"><div>
  </div>
</div>
btford commented 8 years ago

Track this issue here –> https://github.com/angular/angular/issues/5107

vguede commented 8 years ago

Duplicate of angular/angular#5078