In the following template. Click on header bar triggers ng-click and I get a break in ‘clicked()’ but from other tags it does not. What gives?
<div class="dashbox">
<ion-header-bar ng-click="clicked('header')" class="bar bar-dark box-title">
CWNH {{$id}} {{metadata.description}}
</ion-header-bar>
<content ng-click="clicked('content')">
<div class="box-contents" style="color:green" ng-show="showMe">
<p ng-click="clicked('p')">{{tableId}}-{{iam}}</p>
<div><span style="color:red">boxType=</span>{{boxType}}</div>
<div ng-click="clicked('meta')"><span style="color:red">m=</span> {{tableM}}</div>
</div>
</content>
</div>
I also tried using data-ng-click because WebStorm gives warnings about ng-click not allowed, but had no visible difference.
I also tried replacing ‘content’ with ‘div’ but again no change in behavior.
Using node 0.10.36, ionic 1.3.19 (CLI), ionic v1.0.0-rc.1 on Windows 7. Just beginning to use ionic.
Thanks
Dinesh
edit - testing using ionic serve on Chrome