app/assets/javascripts/mail_manager/application.js in mail_manager-3.0.0 vs app/assets/javascripts/mail_manager/application.js in mail_manager-3.2.0

- old
+ new

@@ -10,6 +10,24 @@ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD // GO AFTER THE REQUIRES BELOW. // //= require jquery //= require jquery_ujs -//= require_tree . +//= require jquery-ui +//= require mail_manager/jquery-ui-timepicker-addon +// +jQuery(document).ready(function(){ + jQuery(document).tooltip({ + position: { + my: "center bottom-15", + at: "center top", + using: function( position, feedback ) { + $( this ).css( position ); + $( "<div>" ) + .addClass( "arrow" ) + .addClass( feedback.vertical ) + .addClass( feedback.horizontal ) + .appendTo( this ); + } + } + }); +});