You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a reason that I cannot use History without Router and visa versa? I'm curious is this was a design decision or just the result of the Backbone port. The current implementation prevents the router from being used outside of the browser.
Honestly, I'd love to see 3 modules:
History/pushState - A client-side module that manages browser history for me and provides events for state change.
Route matching and URL interpolation - Basically I want to map from a URL to a route and params, and from a route and params back to a URL. Could be used client-side or in node.
The whole enchilada - A fancy facade that wraps these two together for me on the client. Basically what this module is today (plus url interpolation FTW).
The text was updated successfully, but these errors were encountered:
Yeah pretty sure this is just Backbone legacy that nobody's refactored yet.
This is essentially what we did with ampersand-subcollection, breaking it into its two constituents: filtering and pagination. We haven't refactored subcollection to use the new modules but it's in the works. It makes sense to do the same here too.
Is there a reason that I cannot use History without Router and visa versa? I'm curious is this was a design decision or just the result of the Backbone port. The current implementation prevents the router from being used outside of the browser.
Honestly, I'd love to see 3 modules:
The text was updated successfully, but these errors were encountered: