Tony Habash
Tony Habash
It looks like, by evaluating the new background.js file; the ability to call "toggleView()" from another extension has been removed. Please see the original post for the code locations.
Proposed fix: https://github.com/projectdelphai/panorama-tab-groups/blob/master/src/js/background.js#L156 ``` if (command === "activate-next-group") { await changeActiveGroupBy(1); } else if (command === "activate-previous-group") { await changeActiveGroupBy(-1); } else if (command === "toggle-panorama-view") { await toggleView(); }...
Here's a step by step way to re-create: 1. Install the following gesture add-on: https://addons.mozilla.org/en-US/firefox/addon/gesturefy/?src=search 2. Go to the add-ons settings page in your browser, then to the "Gestures" section:...
I forked this repo to debug and found some issues; in addition to the PR please check the following commit to see what more needs to be done to get...
I just wanted to check on the status of this PR, and request that it be merged and released if it's good to go, please. Thank you!
I think you’ve addressed all the points I made, to my satisfaction. I agree, Free Arrange is probably worth moving away from at this point. The new grid layout, though...
I'm having a similar issue; it doesn't feel like the expected behavior. Nested $find and $fetch should operate on the same URL path. Can someone confirm please?
Interesting; I've been doing this for a while now: ``` import colors from 'vuetify/lib/util/colors.mjs'; ``` Seems to work for me.
Having an "overflow" event would be great as well. Currently a class is added "v-slide-group--is-overflowing", which is nice, but an event might be more useful.