Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@googlemail.com>2016-05-15 16:28:25 +0300
committerRaimund Schlüßler <raimund.schluessler@googlemail.com>2016-05-15 16:28:25 +0300
commitc496d62b0cb6ebca1a6c4207226e350cab8e95ba (patch)
tree87db6a8f0cc76642c6ade503a99921dfefa696c9 /templates
parent59b2fa1dae750cb2ee43b413f7de1717911113e9 (diff)
Enable loading completed tasks
Diffstat (limited to 'templates')
-rw-r--r--templates/part.collectionall.php2
-rw-r--r--templates/part.tasklist.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/part.collectionall.php b/templates/part.collectionall.php
index fc82dfe7..22c550bc 100644
--- a/templates/part.collectionall.php
+++ b/templates/part.collectionall.php
@@ -24,7 +24,7 @@
<?php print_unescaped($this->inc('part.taskbody')); ?>
</li>
</ol>
- <div class="loadmore handler" ng-hide="loadedAll(calendar.uri) || route.collectionID != 'completed'">
+ <div class="loadmore handler" ng-hide="loadedCompleted(calendar.uri) || route.collectionID != 'completed'">
<span ng-click="getCompletedTasks(calendar.uri)"> <?php p($l->t('Load remaining completed tasks.')); ?> </span>
</div>
</div>
diff --git a/templates/part.tasklist.php b/templates/part.tasklist.php
index 04da5d2d..575811fc 100644
--- a/templates/part.tasklist.php
+++ b/templates/part.tasklist.php
@@ -43,7 +43,7 @@
<?php print_unescaped($this->inc('part.taskbody')); ?>
</li>
</ol>
- <div class="loadmore handler" ng-hide="loadedAll(route.calendarID)">
+ <div class="loadmore handler" ng-hide="loadedCompleted(route.calendarID)">
<span ng-click="getCompletedTasks(route.calendarID)"><?php p($l->t('Load remaining completed tasks.')); ?></span>
</div>
</div>