#189 Store user's id when creating reminder

This commit is contained in:
Mike Koch 2016-02-22 19:07:10 -05:00
parent 31a69cebe9
commit 7639bf3dd7
3 changed files with 6 additions and 5 deletions

View File

@ -320,4 +320,8 @@ div.setupButtons {
.category-label {
font-weight: normal;
font-size: 1em;
}
.fc-content {
text-overflow: ellipsis;
}

View File

@ -9,6 +9,7 @@ require_once(HESK_PATH . 'inc/posting_functions.inc.php');
require_once(INTERNAL_API_PATH . 'core/output.php');
require_once(INTERNAL_API_PATH . 'dao/calendar_dao.php');
hesk_session_start();
hesk_load_internal_api_database_functions();
hesk_dbConnect();

View File

@ -138,11 +138,7 @@ $(document).ready(function() {
},
dayRender: function(date, cell) {
var $cell = $(cell);
$cell.tooltip({
container: 'body',
delay: { show: 250, hide: 0 },
title: 'Click to add event'
});
$cell.attr('title', 'Click to add event');
}
});