WIP timesheet timer: start, pause and stop now via a dialog showing both timers and all buttons

This commit is contained in:
ralf
2022-10-05 12:51:59 +02:00
parent ed05a8b6ee
commit 8fad43b705
8 changed files with 417 additions and 297 deletions

View File

@ -82,7 +82,7 @@ egw.extend('calendar', egw.MODULE_WND_LOCAL, function(_app, _wnd)
*
* If browser / OS is configured correct, identical to: (new Date()).getTimezoneOffset()
*
* @return {number} offset to UTC in seconds
* @return {number} offset to UTC in minutes
*/
getTimezoneOffset: function() {
return isNaN(egw.preference('timezoneoffset')) ? (new Date()).getTimezoneOffset() : parseInt(egw.preference('timezoneoffset'));