diff --git a/dist/ionic-angular.js b/dist/ionic-angular.js
index f568acea58..cbff2e3169 100644
--- a/dist/ionic-angular.js
+++ b/dist/ionic-angular.js
@@ -216,7 +216,7 @@ angular.module('ionic.ui.list', ['ionic.service', 'ngAnimate'])
animation: '='
},
template: '
' +
- '' +
+ '' +
' {{item.text}}' +
' ' +
'' +
diff --git a/js/ext/angular/src/directive/ionicList.js b/js/ext/angular/src/directive/ionicList.js
index 49304e9cf0..607c12c435 100644
--- a/js/ext/angular/src/directive/ionicList.js
+++ b/js/ext/angular/src/directive/ionicList.js
@@ -34,7 +34,7 @@ angular.module('ionic.ui.list', ['ionic.service', 'ngAnimate'])
animation: '='
},
template: '' +
- '' +
+ '' +
' {{item.text}}' +
' ' +
'' +
diff --git a/js/ext/angular/test/list.html b/js/ext/angular/test/list.html
index 844ccb5a82..7c23a2cb17 100644
--- a/js/ext/angular/test/list.html
+++ b/js/ext/angular/test/list.html
@@ -105,8 +105,7 @@
type: 'button-danger',
buttonClicked: function(item) {
// Remove ourselves
- //$scope.items.splice($scope.items.indexOf(item), 1);
- item.hide = true;
+ $scope.items.splice($scope.items.indexOf(item), 1);
}
}]
},