Merge pull request #879 from pixelfed/frontend-ui-refactor

Frontend ui refactor
This commit is contained in:
daniel 2019-02-24 23:34:14 -07:00 committed by GitHub
commit c77a22b224
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 3 deletions

View file

@ -217,7 +217,7 @@ class PublicApiController extends Controller
$page = $request->input('page'); $page = $request->input('page');
$min = $request->input('min_id'); $min = $request->input('min_id');
$max = $request->input('max_id'); $max = $request->input('max_id');
$limit = $request->input('limit') ?? 5; $limit = $request->input('limit') ?? 10;
// TODO: Use redis for timelines // TODO: Use redis for timelines
// $timeline = Timeline::build()->local(); // $timeline = Timeline::build()->local();
@ -314,7 +314,7 @@ class PublicApiController extends Controller
$page = $request->input('page'); $page = $request->input('page');
$min = $request->input('min_id'); $min = $request->input('min_id');
$max = $request->input('max_id'); $max = $request->input('max_id');
$limit = $request->input('limit') ?? 5; $limit = $request->input('limit') ?? 10;
// TODO: Use redis for timelines // TODO: Use redis for timelines
// $timeline = Timeline::build()->local(); // $timeline = Timeline::build()->local();

BIN
public/js/timeline.js vendored

Binary file not shown.

Binary file not shown.

View file

@ -341,7 +341,6 @@
mounted() { mounted() {
this.$nextTick(function () { this.$nextTick(function () {
$('[data-toggle="tooltip"]').tooltip() $('[data-toggle="tooltip"]').tooltip()
this.fetchNotifications();
}); });
}, },
@ -379,6 +378,7 @@
} }
$('.timeline .pagination').removeClass('d-none'); $('.timeline .pagination').removeClass('d-none');
this.loading = false; this.loading = false;
this.fetchNotifications();
}).catch(err => { }).catch(err => {
}); });
}, },