I am using the Angular UI bootstrap module for opening a dialog.
There is a option for mentioning the path of template like
$scope.opts = {
backdrop: true,
keyboard: true,
backdropClick: true,
template: '<p>Template</p>',
controller: 'TestDialogController'
}
my app is in site/app then js , partials
I am not able to find how it finds templates
template: 'partials/test.html'instead, but it boils down to where the template is relative to the html page itself.