Display tooltip to create a new event after 250ms

This commit is contained in:
Mike Koch 2016-02-04 13:35:44 -05:00
parent 7567fc8ff5
commit 8b0afb84c9

View File

@ -131,6 +131,14 @@ $(document).ready(function() {
}
$(this).popover('destroy');
},
dayRender: function(date, cell) {
var $cell = $(cell);
$cell.tooltip({
container: 'body',
delay: { show: 250, hide: 0 },
title: 'Click to add event'
});
}
});