$timeout(function () {
$ionicLoading.hide();
$scope.items = [
{ id: 1,text: "111111" },{ id: 2,text: "222222" },{ id: 3,text: "333333" },{ id: 4,text: "444444" },{ id: 5,text: "555555" },{ id: 6,text: "666666" },{ id: 7,text: "777777" },{ id: 8,text: "888888" },{ id: 9,text: "999999" },{ id: 10,text: "aaaaaa" },{ id: 11,text: "bbbbbb" },{ id: 12,text: "cccccc" },];
},2000);
$scope.alertClick = function (val) {
alert(val);
}
})