First of all i wish you all a very happy new year , health and properity.
for this year i have a wish i already had in 2017 . on every new version i have to modify scheduler js files to meet my requirements so can any other person close to god ( alexander for example ) ear my pray and modify it for me ?

my wish is :
on events i use an icon to indicate the type of event and hint to inform more without having to open it. on normal events it works fine but on fullday events it doesn't work as expected.
- 1 icon is on the right side of the descriptor
- 2 hint is not displayed (descriptor)
so on each new version i have to modify
Original code (jquery.calendar.js)
- Code: Select all
1391 var content = [];
1392 content.push(Tp(sp, { content: cen }));
1393 content.push(i);
1394
1395 if (e.reevent)
1396 { content.push(i2); }
1397 p.content = content.join("");
1398 p.eventid = e.event[_idx_ID];
to new code
- Code: Select all
1391 var content = [];
1392 content.push(i);
1393 content.push(Tp(sp, { content: cen }));
1394 if (e.reevent)
1395 { content.push(i2); }
1396 p.content = content.join("");
1397 p.eventid = e.event[_idx_ID];
1398 p.hint = (e.event[_idx_ExtHint] != undefined && e.event[_idx_ExtHint] != "") ? e.event[_idx_ExtHint] : p.title;
to have this result
hope my pray will be heard