Append search results to custom container
Requires https://github.com/owncloud/core/pull/13969 to be merged
This commit is contained in:
parent
6a82d7761f
commit
0f78b8727d
2 changed files with 2 additions and 3 deletions
|
@ -57,7 +57,7 @@
|
|||
]);
|
||||
|
||||
angular.module('Tasks').run([
|
||||
'Config', '$timeout', 'ListsBusinessLayer', 'TasksBusinessLayer', 'SearchBusinessLayer', function(Config, $timeout, TasksBusinessLayer, ListsBusinessLayer, SearchBusinessLayer) {
|
||||
'Config', '$timeout', 'ListsBusinessLayer', 'TasksBusinessLayer', function(Config, $timeout, TasksBusinessLayer, ListsBusinessLayer) {
|
||||
var init, update;
|
||||
init = false;
|
||||
(update = function() {
|
||||
|
@ -72,7 +72,6 @@
|
|||
init = true;
|
||||
return timeOutUpdate();
|
||||
})();
|
||||
OCA.Search.tasks = SearchBusinessLayer;
|
||||
moment.lang('details', {
|
||||
calendar: {
|
||||
lastDay: '[' + t('tasks', 'Due yesterday') + '], HH:mm',
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
<?php print_unescaped($this->inc('part.tasklist')); ?>
|
||||
<?php print_unescaped($this->inc('part.collectionall')); ?>
|
||||
<?php print_unescaped($this->inc('part.collectionweek')); ?>
|
||||
<!-- <div id="searchresults" stop-event="click"></div> -->
|
||||
<div id="searchresults" stop-event="click"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="task-details" ng-class="{'details-visible':route.taskID}">
|
||||
|
|
Loading…
Reference in a new issue