diff options
| author | Henry Jameson <me@hjkos.com> | 2018-08-12 14:14:34 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2018-08-12 14:14:34 +0300 |
| commit | 63650aec29effef1e5c78d953d078ae4a12cb09f (patch) | |
| tree | a1cae6f3a465f83872f9de598802509a1ad29cfe /src/components/notifications/notifications.vue | |
| parent | 32fd108e97de8a1e1201bcc31f70af9ace77e517 (diff) | |
Added support for qvitter api fetching of notifications
Diffstat (limited to 'src/components/notifications/notifications.vue')
| -rw-r--r-- | src/components/notifications/notifications.vue | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/notifications/notifications.vue b/src/components/notifications/notifications.vue index 4fa6e925..859730ed 100644 --- a/src/components/notifications/notifications.vue +++ b/src/components/notifications/notifications.vue @@ -11,6 +11,12 @@ <notification :notification="notification"></notification> </div> </div> + <div class="panel-footer"> + <a href="#" v-on:click.prevent='fetchOlderNotifications()' v-if="!notifications.loading"> + <div class="new-status-notification text-center panel-footer">{{$t('notifications.load_older')}}</div> + </a> + <div class="new-status-notification text-center panel-footer" v-else>...</div> + </div> </div> </div> </template> |
