mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 18:00:54 -04:00
Working on time tracker
This commit is contained in:
parent
c8655f2c45
commit
b54c1fec35
@ -2454,7 +2454,7 @@ $LANG = array(
|
|||||||
'filter_sort' => 'Filter/Sort',
|
'filter_sort' => 'Filter/Sort',
|
||||||
'no_description' => 'No Description',
|
'no_description' => 'No Description',
|
||||||
'time_tracker_login' => 'Time Tracker Login',
|
'time_tracker_login' => 'Time Tracker Login',
|
||||||
'save_or_discard' => 'Please save or discard your changes',
|
'save_or_discard' => 'Save or discard your changes',
|
||||||
'discard_changes' => 'Discard Changes',
|
'discard_changes' => 'Discard Changes',
|
||||||
'tasks_not_enabled' => 'Tasks are not enabled.',
|
'tasks_not_enabled' => 'Tasks are not enabled.',
|
||||||
|
|
||||||
|
@ -109,7 +109,7 @@
|
|||||||
<div class="input-group input-group-lg">
|
<div class="input-group input-group-lg">
|
||||||
<span class="input-group-addon" style="width:1%;" data-bind="click: onFilterClick" title="{{ trans('texts.filter_sort') }}"><span class="glyphicon glyphicon-filter"></span></span>
|
<span class="input-group-addon" style="width:1%;" data-bind="click: onFilterClick" title="{{ trans('texts.filter_sort') }}"><span class="glyphicon glyphicon-filter"></span></span>
|
||||||
<input id="search" type="search" class="form-control search" autocomplete="off" autofocus="autofocus"
|
<input id="search" type="search" class="form-control search" autocomplete="off" autofocus="autofocus"
|
||||||
data-bind="event: { focus: onFilterFocus, input: onFilterChanged, keypress: onFilterKeyPress }, value: filter, valueUpdate: 'afterkeydown', attr: {placeholder: placeholder}">
|
data-bind="event: { focus: onFilterFocus, input: onFilterChanged, keypress: onFilterKeyPress }, value: filter, valueUpdate: 'afterkeydown', attr: {placeholder: placeholder, style: filterStyle }">
|
||||||
<span class="input-group-addon" style="width:1%;" data-bind="click: onRefreshClick" title="{{ trans('texts.refresh') }}"><span class="glyphicon glyphicon-repeat"></span></span>
|
<span class="input-group-addon" style="width:1%;" data-bind="click: onRefreshClick" title="{{ trans('texts.refresh') }}"><span class="glyphicon glyphicon-repeat"></span></span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -375,7 +375,6 @@
|
|||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
$( window ).scroll(function() {
|
$( window ).scroll(function() {
|
||||||
|
@ -173,6 +173,10 @@
|
|||||||
}, 1000);
|
}, 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
self.filterStyle = ko.computed(function() {
|
||||||
|
return 'background-color: ' + (self.filter() ? '#fff68f' : 'white') + ' !important';
|
||||||
|
});
|
||||||
|
|
||||||
self.statistics = ko.computed(function() {
|
self.statistics = ko.computed(function() {
|
||||||
return '';
|
return '';
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user