angular-ui / ui-calendar

A complete AngularJS directive for the Arshaw FullCalendar.
http://angular-ui.github.io/ui-calendar/
MIT License
1.49k stars 729 forks source link

How customize the tooltip? #483

Open DanielFrontD opened 7 years ago

DanielFrontD commented 7 years ago

I wonder if there is a simple way to customize the tooltip, without modify the code of the plugin

mauleyzaola commented 7 years ago

It is clearly written in the demo

    $scope.eventRender = function( event, element, view ) {
      element.attr({'tooltip': event.title,
        'tooltip-append-to-body': true});
      $compile(element)($scope);
    };