add a navbar button that opens the repo in the desktop's native file browser
This should work on linux (xdg-open) and OSX (open). If the program is not in $PATH, it falls back to opening a browser window/tab with file:/// The only tricky bit is the javascript code, that handles clicking on the link. This is to avoid unnecessary page refreshes. Until I added the return false at the end, the <a>'s normal click event also fired, so two file browsers opened. I have not checked portability extensively.
This commit is contained in:
parent
13a7362a1a
commit
1f89712e6b
4 changed files with 41 additions and 2 deletions
|
@ -11,5 +11,6 @@
|
|||
/notifier/transfers NotifierTransfersR GET
|
||||
/notifier/sidebar NotifierSideBarR GET
|
||||
/closealert/#AlertId CloseAlert GET
|
||||
/filebrowser FileBrowserR GET POST
|
||||
|
||||
/static StaticR Static getStatic
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue