mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
Working on time tracker
This commit is contained in:
parent
67ba4c9a11
commit
0e4d309d2f
@ -365,22 +365,15 @@
|
||||
}
|
||||
|
||||
self.selectTask = function(task) {
|
||||
|
||||
//self.selectedTask(new TaskModel());
|
||||
|
||||
refreshProjectList(true); // ensure all projects are shown
|
||||
// if a client is selected the project list will be filtered
|
||||
// this prevents the new task's project from being show
|
||||
// to fix it we're clearing the list and then firing a
|
||||
// client change event to re-filter the list
|
||||
refreshProjectList(true);
|
||||
self.selectedTask(task);
|
||||
if (! task.project()) {
|
||||
$('select#client_id').trigger('change');
|
||||
}
|
||||
//$('select#client_id').trigger('change');
|
||||
|
||||
/*
|
||||
$('select#client_id').trigger('change')
|
||||
var publicId = task.project() ? task.project().public_id() : 0;
|
||||
var name = task.project() ? task.project().name() : '';
|
||||
setComboboxValue($('.project-select'), publicId, name);
|
||||
*/
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user