Skip to content
This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Commit 0e60c8c

Browse files
committed
[FIX] Keys in examples
1 parent 958169d commit 0e60c8c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+10922
-991
lines changed

analysis.json

Lines changed: 332 additions & 324 deletions
Large diffs are not rendered by default.

docs/components/app-layout/.bower.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "app-layout",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "A set of layout elements for your app",
55
"authors": [
66
"The Polymer Authors"
@@ -50,7 +50,7 @@
5050
},
5151
"devDependencies": {
5252
"test-fixture": "PolymerElements/test-fixture#^1.0.0",
53-
"web-component-tester": "^4.0.0",
53+
"web-component-tester": "^6.0.0",
5454
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
5555
},
5656
"resolutions": {
@@ -65,11 +65,11 @@
6565
"resolutions": {
6666
"webcomponentsjs": "^1.0.0"
6767
},
68-
"_release": "2.0.1",
68+
"_release": "2.0.2",
6969
"_resolution": {
7070
"type": "version",
71-
"tag": "v2.0.1",
72-
"commit": "63b5453e260d4fbe19513d02ca8a34a0555394dd"
71+
"tag": "v2.0.2",
72+
"commit": "502cbfe604a3017ac22ad924a11668143354e828"
7373
},
7474
"_source": "https://github.com/PolymerElements/app-layout.git",
7575
"_target": "1 - 2",

docs/components/app-layout/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ Here are some web apps built with App Layout:
218218
</app-box>
219219
```
220220

221-
- In `app-drawer-layout`, the `drawer-toggle` element will not be automatically hidden
221+
- In `app-drawer-layout`, the `drawer-toggle` element needs to be manually hidden
222222
when `app-drawer-layout` is not in narrow layout. To add this, add the following CSS rule where
223223
`app-drawer-layout` is used:
224224

docs/components/app-layout/app-drawer-layout/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Add the `drawer-toggle` attribute to elements inside `app-drawer-layout` that to
7373
</app-drawer-layout>
7474
```
7575

76-
**NOTE:** With app-layout 2.0, the `drawer-toggle` element will not be automatically hidden
76+
**NOTE:** With app-layout 2.0, the `drawer-toggle` element needs to be manually hidden
7777
when app-drawer-layout is not in narrow layout. To add this, add the following CSS rule where
7878
app-drawer-layout is used:
7979

docs/components/app-layout/app-drawer-layout/app-drawer-layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
</app-drawer-layout>
8686
```
8787
88-
**NOTE:** With app-layout 2.0, the `drawer-toggle` element will not be automatically hidden
88+
**NOTE:** With app-layout 2.0, the `drawer-toggle` element needs to be manually hidden
8989
when app-drawer-layout is not in narrow layout. To add this, add the following CSS rule where
9090
app-drawer-layout is used:
9191

docs/components/app-layout/app-header-layout/app-header-layout.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,12 @@
125125
z-index: 0;
126126
}
127127

128+
@media print {
129+
:host([has-scrolling-region]) #wrapper #contentContainer {
130+
overflow-y: visible;
131+
}
132+
}
133+
128134
</style>
129135

130136
<div id="wrapper" class="initializing">

docs/components/app-layout/bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "app-layout",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "A set of layout elements for your app",
55
"authors": [
66
"The Polymer Authors"
@@ -50,7 +50,7 @@
5050
},
5151
"devDependencies": {
5252
"test-fixture": "PolymerElements/test-fixture#^1.0.0",
53-
"web-component-tester": "^4.0.0",
53+
"web-component-tester": "^6.0.0",
5454
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
5555
},
5656
"resolutions": {

docs/components/app-layout/helpers/helpers.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@
1111
<link rel="import" href="../../polymer/polymer.html">
1212

1313
<script>
14+
/** @namespace */
1415
Polymer.AppLayout = Polymer.AppLayout || {};
1516

16-
Polymer.AppLayout._scrollEffects = Polymer.AppLayout._scrollEffects || {};
17+
Polymer.AppLayout._scrollEffects = {};
18+
Polymer.AppLayout._scrollTimer = null;
1719

1820
Polymer.AppLayout.scrollTimingFunction = function easeOutQuad(t, b, c, d) {
1921
t /= d;
@@ -42,7 +44,7 @@
4244
while (queue.length > 0) {
4345
var node = queue.shift();
4446
matches.push.apply(matches, node.querySelectorAll(selector));
45-
for (i = 0; node.children[i]; i++) {
47+
for (var i = 0; node.children[i]; i++) {
4648
if (node.children[i].shadowRoot) {
4749
queue.push(node.children[i].shadowRoot);
4850
}

docs/components/myscript-common-element/.bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@
4545
"paper-toggle-button": "^2.0.0",
4646
"paper-slider": "^2.0.2"
4747
},
48-
"_release": "a4965d08c1",
48+
"_release": "ed3114e28e",
4949
"_resolution": {
5050
"type": "branch",
5151
"branch": "master",
52-
"commit": "a4965d08c1ca2608d1acceec7da8a1c270d44bbe"
52+
"commit": "ed3114e28ea04b74750680adb439a84ec34374a5"
5353
},
5454
"_source": "https://github.com/MyScript/myscript-common-element.git",
5555
"_target": "master",

0 commit comments

Comments
 (0)