Where to find angular part of Ionic documentation?

Hi,

Where I generate an Ionic app with a header bar, I get this starter code:

<ion-header-bar>
   <h1 class="title">Connexion</h1>
   <div class="buttons">
     <button class="button button-clear" ng-click="closeLogin()">Close</button>
   </div>
 </ion-header-bar>

While, in the official documentation, I find this:

<div class="bar bar-header bar-light">
  <h1 class="title">bar-light</h1>
</div>

Do you where to find an official documentation of the “ion-x” tags?

Regards.

Have a look in the JavaScript part of the docs. It’s in there because there is the extra info re: the script functions associated with those elements.

I find that using the ion-x tags (as you call them) is much, errr, cleaner.

1 Like

You were right!

I’ve red too fast, here it is for the header part: http://ionicframework.com/docs/api/directive/ionHeaderBar/

Thanks.