Toggle sjhit

This commit is contained in:
Max Lynch
2013-10-11 12:09:19 -05:00
parent af832c649b
commit 0b375d4eb9
4 changed files with 45 additions and 1 deletions

View File

@ -33,6 +33,7 @@ angular.module('ionic.ui.list', ['ionic.service', 'ngAnimate'])
return {
restrict: 'E',
replace: true,
transclude: true,
scope: {
isEditing: '=',
items: '=',
@ -52,6 +53,8 @@ angular.module('ionic.ui.list', ['ionic.service', 'ngAnimate'])
if(attr.animation) {
$element.addClass(attr.animation);
}
$element.append(transclude($scope));
}
}
}