#189 Store user's id when creating reminder

merge-requests/1/head
Mike Koch 8 years ago
parent 31a69cebe9
commit 7639bf3dd7

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

@ -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();

@ -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');
}
});

Loading…
Cancel
Save