Ionic content comments

This commit is contained in:
Max Lynch
2013-10-01 22:30:49 -05:00
parent 622eb890a2
commit 9c5f78b9f3

View File

@ -1,30 +1,7 @@
angular.module('ionic.ui.content', {})
/*
.directive('content', function() {
return {
restrict: 'E',
replace: true,
template: '<div class="content"></div>'
}
});
*/
/*
.directive('content', function() {
return {
restrict: 'E',
replace: true,
transclude: true,
scope: {
hasHeader: '@',
hasTabs: '@'
},
template: '<div class="content" ng-class="{\'has-header\': hasHeader, \'has-tabs\': hasTabs}" ng-transclude></div>'
}
})
*/
// The content directive is a core scrollable content area
// that is part of many View hierarchies
.directive('content', function() {
return {
restrict: 'E',