Lots of cleanup. Fixed #25, progress on #68

This commit is contained in:
Max Lynch
2013-11-04 12:37:42 -06:00
parent 8cb701a3da
commit bd8e0816a9
27 changed files with 133 additions and 1420 deletions

View File

@ -3,6 +3,15 @@
angular.module('ionic.ui.content', [])
.directive('pane', function() {
return {
restrict: 'E',
replace: true,
transclude: true,
template: '<div class="pane" ng-transclude></div>'
}
})
// The content directive is a core scrollable content area
// that is part of many View hierarchies
.directive('content', function() {