#189 Store user's id when creating reminder
This commit is contained in:
parent
31a69cebe9
commit
7639bf3dd7
@ -320,4 +320,8 @@ div.setupButtons {
|
|||||||
.category-label {
|
.category-label {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-size: 1em;
|
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 . 'core/output.php');
|
||||||
require_once(INTERNAL_API_PATH . 'dao/calendar_dao.php');
|
require_once(INTERNAL_API_PATH . 'dao/calendar_dao.php');
|
||||||
|
|
||||||
|
hesk_session_start();
|
||||||
hesk_load_internal_api_database_functions();
|
hesk_load_internal_api_database_functions();
|
||||||
hesk_dbConnect();
|
hesk_dbConnect();
|
||||||
|
|
||||||
|
|||||||
@ -138,11 +138,7 @@ $(document).ready(function() {
|
|||||||
},
|
},
|
||||||
dayRender: function(date, cell) {
|
dayRender: function(date, cell) {
|
||||||
var $cell = $(cell);
|
var $cell = $(cell);
|
||||||
$cell.tooltip({
|
$cell.attr('title', 'Click to add event');
|
||||||
container: 'body',
|
|
||||||
delay: { show: 250, hide: 0 },
|
|
||||||
title: 'Click to add event'
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user