mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
17 lines
409 B
JavaScript
17 lines
409 B
JavaScript
/*
|
|
* We don't document the ionPopover directive, we instead document
|
|
* the $ionicPopover service
|
|
*/
|
|
IonicModule
|
|
.directive('ionPopover', [function() {
|
|
return {
|
|
restrict: 'E',
|
|
transclude: true,
|
|
replace: true,
|
|
controller: [function(){}],
|
|
template: '<div class="popover-backdrop">' +
|
|
'<div class="popover-wrapper" ng-transclude></div>' +
|
|
'</div>'
|
|
};
|
|
}]);
|