diff --git a/public/js/status.js b/public/js/status.js index f6d4dab73..eae557f92 100644 Binary files a/public/js/status.js and b/public/js/status.js differ diff --git a/public/js/timeline.js b/public/js/timeline.js index 1762e954d..c72c09374 100644 Binary files a/public/js/timeline.js and b/public/js/timeline.js differ diff --git a/public/mix-manifest.json b/public/mix-manifest.json index 9a8a45a03..a9d1bbc9a 100644 Binary files a/public/mix-manifest.json and b/public/mix-manifest.json differ diff --git a/resources/assets/js/components/Timeline.vue b/resources/assets/js/components/Timeline.vue index 1e29f8ae8..ea3ea260b 100644 --- a/resources/assets/js/components/Timeline.vue +++ b/resources/assets/js/components/Timeline.vue @@ -182,7 +182,7 @@ -
+
@@ -192,9 +192,6 @@
-
@@ -223,7 +220,7 @@

{{profile.display_name || 'loading...'}}

- +
@@ -247,28 +244,6 @@
-
-
-
-
- - -
- -
- - -
-
-

BETA FEATURES

-
Experimental features have been moved to the Labs settings page.
-
-
-
-
@@ -447,12 +422,10 @@ loading: true, replies: [], replyId: null, - optionMenuState: false, modes: { 'mod': false, 'dark': false, 'notify': true, - 'infinite': true, 'distractionFree': false }, followers: [], @@ -932,49 +905,6 @@ } }, - toggleOptionsMenu() { - this.optionMenuState = !this.optionMenuState; - }, - - modeModToggle() { - this.modes.mod = !this.modes.mod; - //window.ls.set('pixelfed-classicui-settings', this.modes); - }, - - modeNotifyToggle() { - this.modes.notify = !this.modes.notify; - //window.ls.set('pixelfed-classicui-settings', this.modes); - }, - - modeDarkToggle() { - // todo: more graceful stylesheet change - if(this.modes.dark == true) { - axios.post('/i/metro/dark-mode', { - mode: 'light' - }).then(res => { - $('link[data-stylesheet=dark]') - .attr('data-stylesheet', 'light') - .attr('href', '/css/app.css?v=' + Date.now()); - this.modes.dark = false; - }); - } else { - axios.post('/i/metro/dark-mode', { - mode: 'dark' - }).then(res => { - $('link[data-stylesheet=light]') - .attr('data-stylesheet', 'dark') - .attr('href', '/css/appdark.css?v=' + Date.now()); - this.modes.dark = true; - }); - } - //window.ls.set('pixelfed-classicui-settings', this.modes); - }, - - modeInfiniteToggle() { - this.modes.infinite = !this.modes.infinite - //window.ls.set('pixelfed-classicui-settings', this.modes); - }, - followingModal() { if(this.following.length > 0) { this.$refs.followingModal.show();