Replies: 3 comments 3 replies
-
Is that a query string or a fragment composed like a query_string?
|
Beta Was this translation helpful? Give feedback.
1 reply
-
You could even still use a new instance of Mojo::Parameters to build the query-like content for the fragment |
Beta Was this translation helpful? Give feedback.
1 reply
-
Sounds like you should use query params and not a fragment for this though. Have you considered using https://developer.mozilla.org/en-US/docs/Web/API/History/pushState on the client side? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've been playing a bit with an application where we load a PDF in an iframe on the left side of the screen. The build in PDF viewers in Firefox and Chrome can react to parts of the URL you give the PDF URL, but you need
#
not?
as the separator before the "query". Do we have any way of controlling the separator in say->query(...)
.In my POC I just used
and did a replacement on
$url
, might have been nice with something cleaner.As an example
#page=2&zoom=150
would start at page 2 with a specific zoom level.Beta Was this translation helpful? Give feedback.
All reactions