Hi,
How can I remove / disable the debugging option on the scheduler, so that it doesn't write to the console. This is causing quite allot of lag on the rest of the page, especially this event:
gKeyUp: keyCode=<key code>
So this is what is causing the output to the console:
DayPilotScheduler.gKeyUp = function(ev) { if (window.console) { window.console.log("gKeyUp: keyCode=" + ev.keyCode); } ;var ev = ev || window.event; var $6m = ev.keyCode; if ($6m === 17) { if (DayPilotScheduler.rangeCalendar) { var $k = DayPilotScheduler.rangeCalendar; $k.$gQ.dispatch(); } } }
This was a temporary issue of the sandbox build. The latest sandbox build doesn't print it anymore (8.2.2396):
http://javascript.daypilot.org/sandbox/scheduler/
Thanks Dan - updated to new sandbox version. For recipients that have a paid pro version, when can we expect to get a new build?
Thanks!
The next release (8.3) is scheduled for next week.
Thanks Dan