Working on time tracker
This commit is contained in:
parent
ac44c1ebff
commit
954a7a8fd4
1 changed files with 2 additions and 6 deletions
|
|
@ -225,11 +225,7 @@
|
|||
|
||||
self.onStartClick = function() {
|
||||
if (self.selectedTask()) {
|
||||
if (self.formChanged()) {
|
||||
self.onSaveClick();
|
||||
} else {
|
||||
self.selectedTask().onStartClick();
|
||||
}
|
||||
self.selectedTask().onStartClick();
|
||||
} else {
|
||||
var time = new TimeModel();
|
||||
time.startTime(moment().unix());
|
||||
|
|
@ -499,7 +495,7 @@
|
|||
+ '&project_name=' + encodeURIComponent(self.project() ? self.project().name() : '')
|
||||
+ '&description=' + encodeURIComponent(self.description())
|
||||
+ '&time_log=' + JSON.stringify(self.times());
|
||||
|
||||
|
||||
var url = '{{ url('/tasks') }}';
|
||||
var method = 'post';
|
||||
if (self.public_id()) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue