using angularjs (+ionic) I'm trying to do this:
<ion-item menu-close ng-repeat="button in MenuButtons" {{button.type}}={{button.link}}>
the result I would expect is:
<ion-item menu-close ng-repeat="button in MenuButtons" href="mypage.html">
instead I get:
<ion-item menu-close="" ng-repeat="button in MenuButtons" {{button.type}}="{{button.link}}" class="item ng-binding" style="">
My problem is with {{button.type}}={{button.link}}
That said the following is working for me just fine where the link is "mypage.html":
href={{button.link}} --> href="mypage.html"
what am I missing?