This commit is contained in:
Max Lynch
2013-10-08 18:30:24 -05:00
parent 7693f64787
commit 5e48c206ec
5 changed files with 46 additions and 8 deletions

View File

@ -0,0 +1,11 @@
angular.module('ionic.ui.list', ['ionic.service'])
.directive('list', function() {
return {
restrict: 'E',
replace: true,
transclude: true,
scope: {},
template: '<ul class="list-group" ng-transclude></ul>'
}
})