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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added feature which will allow single-page-express to remember the scroll position of pages that have been visited. It will also remember the scroll position of child containers on each page as well, but only if those containers have assigned id attributes.
Added alwaysScrollTop param which will let you disable this behavior app wide and res.resetScroll which will let you disable this behavior on a per-route basis.
Added new behaviors to the default render method. It will now:
Update the attributes of the <html> and <head> tags.
Add new children to the <head> tag if anything new is in the template render.
Delay the DOM update until any new <link> or <script> tags load to prevent a FOUC.
Set browser focus appropriately after the DOM update. Also added res.focus to let you set it manually.
Announce page changes to screen readers.
Added res properties which will let you remove elements from the <head> tag on a per route basis: res.removeMetaTags, res.removeStyleTags, res.removeLinkTags, res.removeScriptTags, res.removeBaseTags, res.removeTemplateTags. There is also res.removeHeadTags to remove all children of the <head> tag except the <title> tag.
Added topBarRoutes param to allow restricting the top bar to certain routes.
Added req.singlePageExpress which you can use to detect if your route is executing in the single-page-express context.
Fixed a bug which caused back/forward buttons to not function properly sometimes.
Fixed a bug which would cause the top bar not to ever hide if it was enabled but the default render method was replaced.
Fixed a bug in the Express sample app that would cause server-rendering to fail on routes with more than one /.
Added a new sample app.
Added an automated test suite and a few starter tests.