Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
9c667402
Commit
9c667402
authored
4 years ago
by
Давид Добряков
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add productive_time = work_time if productive_time is not defined, add ability…
Add productive_time = work_time if productive_time is not defined, add ability for adding time equals zero
parent
490204c9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
timer.js
js/etersoft/timer.js
+4
-2
No files found.
js/etersoft/timer.js
View file @
9c667402
...
...
@@ -166,10 +166,12 @@ window.addEventListener("load", function() {
workTime
===
parseInt
(
btn
.
dataset
[
"time"
])
?
parseInt
(
btn
.
dataset
[
"time"
])
:
workTime
;
workTime
=
workTime
>
0
?
workTime
:
1
;
workTime
=
workTime
>
0
?
workTime
:
0
;
let
workTimeValue
=
Math
.
ceil
((
workTime
/
60
)
*
100
)
/
100
;
let
productiveTime
=
parseInt
(
document
.
querySelector
(
"#ProductTime"
).
value
);
productiveTime
=
productiveTime
>
0
?
productiveTime
:
1
;
productiveTime
=
productiveTime
>
0
?
productiveTime
:
workTime
;
let
productiveTimeValue
=
Math
.
ceil
((
productiveTime
/
60
)
*
100
)
/
100
;
document
.
querySelector
(
"#work_time"
).
value
=
workTimeValue
;
document
.
querySelector
(
"#productive_time"
).
value
=
productiveTimeValue
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment