Hello Everyone, @mhartington @Ionic sorry to bring this up. I have used the popover template in a tab ui template. My popover loads well with its content. My problem is i cannot to seam to be able to link to content in my popover to another template in the templates dir.
here is my directive for it
.state('feedback', {
url: '/feeback',
views: {
'feedback': {
templateUrl: 'templates/feedback.html'
}
}
})
here is how ive linked it in the popover template to a file in templates called feedback
<a href= "#/feedback">Click Feedback</a>
here is my popover controller working fine
.controller('popOverCtrl', function($scope, $ionicPopover) {
$ionicPopover.fromTemplateUrl('templates/popover.html', {
scope: $scope,
}).then(function(popover) {
$scope.popover = popover;
});
}
});
Thanks for the help