UNPKG

angular-ui-bootstrap-4

Version:

Native AngularJS (Angular) directives for Bootstrap

23 lines (22 loc) 540 B
angular.module('ui.bootstrap.demo').controller('TooltipDemoCtrl', function ($scope, $sce) { $scope.dynamicTooltip = 'Hello, World!'; $scope.dynamicTooltipText = 'dynamic'; $scope.htmlTooltip = $sce.trustAsHtml('I\'ve been made <b>bold</b>!'); $scope.placement = { options: [ 'top', 'top-left', 'top-right', 'bottom', 'bottom-left', 'bottom-right', 'left', 'left-top', 'left-bottom', 'right', 'right-top', 'right-bottom' ], selected: 'top' }; });