SAAS-940: Provide usability hints to user

Fixed bug where hints were not showing up sometimes
This commit is contained in:
drigato 2015-07-14 10:08:56 -04:00
parent 25ef70767b
commit 71e8909365
3 changed files with 8 additions and 4 deletions

View file

@ -354,6 +354,7 @@ function getFullCalendarEvents(start, end, callback) {
var d = new Date();
$.post(url, {format: "json", start: start_date, end: end_date, cachep: d.getTime()}, function(json){
callback(json.events);
getUsabilityHint();
});
}
}