Small request, would it be possible to add in middle mouse clicking to open a service in a new tab?
That's the normal link behavior in my browsers; currently for example, when ctrl+clicking say, NZBHydra in the services menu will do so, but middle click does nothing at all. Out of habit I always find myself first middle clicking a service, then thinking "oh yea, organizr doesn't do that", and then ctrl-clicking it.
Personally speaking, A lot of times I keep my right hand on the mouse, and rest my chin upon my left palm as I am looking over things, so it takes a ton of energy for my lazy arse to have to always lower my left hand back to the keyboard, and support the weight of my own head all by itself. Especially in the morning before I'm done with my coffee. :P
TIA!
does middle button do anything at all at the moment?
I dont have a middle button mouse to test
does middle button do anything at all at the moment?
I dont have a middle button mouse to test
Newp, nothing at all.

It does show an animation but it does not do anything other than that.
It does show an animation but it does not do anything other than that.
Other than the hover-highlighting I don't even get that click animation on mine.
Maybe it has to do with our theme choices? Looks like you're using a diff theme than mine. I'm using the Organizr Dark theme.
i have had a quick look into this and it would be quit straight forward. there are 2 main things that would need changing.
the first thing is that each tab icon has an onclick action. this needs to be changed to an onauxclick action so that it catches middle clicks. i have not found where this needs to be changed but i doubt it will be hard for someone familiar with the project.
the other is a change to the tab loading JS. the tab icon onclick action calls the tabActions function. this needs to be changed to handle the middle click. the simplest way to do that is to add a condition to the ctrl+click if statement for the middle moues button. this would mean changing this line from if(event.ctrlKey && !event.shiftKey && !event.altKey){ to if((event.ctrlKey && !event.shiftKey && !event.altKey) || event.which==2){ (there might be a neater way to do this).
it will also now need to handle for right mouse click so that accessing a context menus does not trigger a tab change. this could be a simple as adding this if(event.which!=1 && event.which!=2){ empty if statement before the open in new window one and changing that to an else if.
i have tested this by substituting the functions on an already loaded page and it works however i have not tested the changes in the backend.
let me know if you need more information or if i am way off on my idea.
I was just googling for how to do this too. It is the only thing keeping me from using Organizr 100% .. so, +1 if it can be implemented
@causefx any chance on getting a response to this?
please try the latest commit on dev to see if this worked, I don't have a mouse with middle button to test.
EDIT: Actually it does work - i mapped middle button to an alt button on my mouse. It seems Edge doesn't recognize middle button for me, but I tried in Firefox and it worked.
that works great thanks for adding it.
Working great, thanks!
Dumb question, how can i update my organizr to pick up the change? I tried the built in Check for Updates > Install Update 2.1.183 but the middle click doesnt open a new tab >_< thanks
does it show that you are on 2.1.183 now tho?
clear cache?
Sent from my iPhone
On Jan 29, 2021, at 5:57 PM, joshhazel notifications@github.com wrote:

Dumb question, how can i update my organizr to pick up the change? I tried the built in Check for Updates > Install Update 2.1.183 but the middle click doesnt open a new tab >_< thanks—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub, or unsubscribe.

Yeah, it shows 2.1.183, Cleared cache,
but when middle clicking the middle mouse button on any of the tabs (sonarr, radarr) on the left side its not doing anything for me
what browser?
what browser?
Chrome 88.0.4324.104, I also tried Edge 88.0.705.56
@TomW1605 @STaRDoGG what browsers are you guys using...?
I think it doesn't work for chromium based browsers... I'll try to find a work around.
@TomW1605 @STaRDoGG what browsers are you guys using...?
I think it doesn't work for chromium based browsers... I'll try to find a work around.
i am using chrome v86.0.4240.198
I just tested on 2.1.183 v2-Master (Docker):
All work fine
Gives me the "Quick Scroll" icon. I'm not sure if that's due to a setting in Opera or something though (I didn't look; I don't use Opera very often.)
Most helpful comment
please try the latest commit on dev to see if this worked, I don't have a mouse with middle button to test.
EDIT: Actually it does work - i mapped middle button to an alt button on my mouse. It seems Edge doesn't recognize middle button for me, but I tried in Firefox and it worked.