Currently, I am tinkering with implementing a popover on a button using Angular-UI. The tooltips are behaving as expected, however, I am encountering difficulties when trying to incorporate popovers.
In my controller, there is minimal code as it only consists of $scope. Below is the code snippet for the button, which I directly borrowed from the demo showcased on their official website:
<button popover-placement="bottom" popover="On the Bottom!" class="btn btn-default">Bottom</button>
I find it puzzling that while the tooltip directive is functioning properly, the popover isn't. Could there be something missing in my controller?
Even though I doubt its relevance, here is my controller's content:
angular.module('module').controller('MyController', ['$scope',
function($scope) {
}
]);
I truly hope to resolve this issue soon. Thank you kindly in advance.