Remove isolated scope

Hello,

I would remove isolated scope, I do not like the idea of ​​having a different scope for the header, content and footer.
I do not want to find another solution, I just want to disable the isolated scope.

Thank you very much.

One of my views :slight_smile:

ion-header-bar.bar-pilt(align-title='left')
  h1.title Pilters
    button.button.no-animation.button-icon.icon.ion-refresh(ng-click='refresh()')

ion-content.pilters.colors(sroll='true')
    .list
        a.item.item-thumbnail-left(href='', ng-repeat='friend in friends | limitTo: 25')
            img.img-circle(ng-src='https://graph.facebook.com/{{friend.id}}/picture?width=110&height=110')
            h2 {{friend.name}}
            p Send an invitation

Imagine you have a list making app that has two views -

  1. Make the list
  2. See fancy info about how many tasks you complete per week, per month and per year, with graphs and charts.

Now imagine if you’ve been using it for a couple of years. You’ve got a couple hundred tasks at any given moment, which of itself isn’t such a big thing. But you’ve also got graphs and charts for the years, months and weeks you’ve been using the app. That’s a lot of memory hogging for a view you’re not even looking at!

That’s one of the reasons isolated scopes are a wonderful idea. If you still want data sharing between them, use an offline storage solution like localStorage or localForage…