| Index: polymer_1.0.4/bower_components/app-router/changelog.md
|
| diff --git a/polymer_0.5.4/bower_components/app-router/changelog.md b/polymer_1.0.4/bower_components/app-router/changelog.md
|
| similarity index 80%
|
| copy from polymer_0.5.4/bower_components/app-router/changelog.md
|
| copy to polymer_1.0.4/bower_components/app-router/changelog.md
|
| index 9a6a6ba5013b0ad51247a20f6ae65579624f9b88..5f4814a1ee59a73b34340d575ddb07b39dd2beca 100644
|
| --- a/polymer_0.5.4/bower_components/app-router/changelog.md
|
| +++ b/polymer_1.0.4/bower_components/app-router/changelog.md
|
| @@ -1,5 +1,23 @@
|
| ## app-router change log
|
|
|
| +#### master
|
| +- Adding `hashbang` mode in addition to the existing `auto`, `hash`, and `pushstate`.
|
| +- Fixed URL change bug when only changing the hash.
|
| +
|
| +#### 2.6.0
|
| +- Adding ability to bundle templates and select by ID `<app-route path="/home" import="pages/bundled-templates.html" template="homepage"></app-route>`.
|
| +- Adding `async` flag to `<app-route>` HTML imports. By default HTML imports block rendering of the page. The router waits for the link's `load` event to fire before using the imported document so this will speed up rendering when navigating between routes.
|
| +
|
| +#### 2.5.0
|
| +- Adding `onUrlChange="reload|updateModel|noop"` attribute to `<app-route>`. This is useful when you have nested routers and you only want to change the inner most route.
|
| +
|
| +#### v2.4.2
|
| +- Fixing bug where navigating multiple times before any page finishes importing will lose the reference to the currently loaded route (`previousRoute`) before it is removed from the DOM.
|
| +- Adding `route.importLink` reference.
|
| +
|
| +#### v2.4.1
|
| +- Fixed bug where navigating to the same link twice with `core-animated-pages` would remove the page after 5 seconds.
|
| +
|
| #### v2.4.0
|
| - Adding globstar `**` support.
|
| - Adding relative paths `users/:userId` which is the same as `/**/users/:userId`.
|
|
|