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

Frontend ui refactor
This commit is contained in:
daniel 2019-04-21 21:05:59 -06:00 committed by GitHub
commit 88d600a2a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 0 deletions

BIN
public/js/profile.js vendored

Binary file not shown.

BIN
public/js/timeline.js vendored

Binary file not shown.

Binary file not shown.

View file

@ -580,6 +580,9 @@ export default {
},
infiniteTimeline($state) {
if(this.loading) {
return;
}
let apiUrl = '/api/v1/accounts/' + this.profileId + '/statuses';
axios.get(apiUrl, {
params: {

View file

@ -489,6 +489,9 @@
},
infiniteTimeline($state) {
if(this.loading) {
return;
}
let apiUrl = false;
switch(this.scope) {
case 'home':