Skip to content

Commit fd86bd9

Browse files
committed
Issue #58. Use #hashtag instead of ?query_parameter to work around the issue
1 parent 0f06b19 commit fd86bd9

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

test/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
(fast ? [ '' ] : [ '', '-lazy' ]).forEach(function (type) {
2626
for (var scope in Suite.scopes) {
2727
Suite.scopes[scope].test.forEach(function (tests, index) {
28-
suites.push(phase + '/' + scope + type + '-test.html' + '?TestSuites=' + index);
28+
suites.push(phase + '/' + scope + type + '-test.html' + '#TestSuites=' + index);
2929
});
3030
}
3131
});

test/src/my-app.html

+2-5
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,7 @@
6262

6363
</style>
6464

65-
<!-- Avoid app-location issue for disappearing query parameters in app-route#2.0.0
66-
Possibly related issue: https://github.com/PolymerElements/app-route/issues/149
67-
<app-location route="{{route}}"></app-location>
68-
-->
65+
<app-location route="{{route}}"></app-location>
6966
<app-route
7067
route="{{route}}"
7168
pattern="{{_resolveUrlPath(':page')}}"
@@ -87,7 +84,7 @@
8784
<!-- Main content -->
8885
<app-header-layout has-scrolling-region>
8986

90-
<app-header slot="header" condenses reveals effects="waterfall">
87+
<app-header condenses reveals effects="waterfall">
9188
<app-toolbar>
9289
<paper-icon-button icon="menu" drawer-toggle></paper-icon-button>
9390
<div title>My App</div>

0 commit comments

Comments
 (0)