List items cant't be clickable without a refresh ionic version 1.0.0-beta.14

I have a list in page has many tabs each tab with view, however the list item isn’t clickable unless i navigate to another tab and get back to the original tab where is my list.

iv’e read something slimier here but with different version of ionic:
list ins’t clickable

here is my code:

<ion-view ng-controller="itemsCtrl as vm">
<ion-content class="has-header">
	<div class="list">
		<a class="item item-icon-right" ng-repeat="item in vm.items" ng-click="vm.selectItem(item.id)">
			{{item.name}}
			<i class="icon ion-chevron-right icon-accessory"></i>
		</a>
	</div>
</ion-content>