Skip to content

Commit 17a71ba

Browse files
Update dist folder [skip ci] (#914)
1 parent b20afc1 commit 17a71ba

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

dist/samples/advanced-markers-animation/app/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
});
8888

8989
content.style.opacity = '0';
90-
content.addEventListener('animationend', (event) => {
90+
content.addListener('animationend', (event) => {
9191
content.classList.remove('drop');
9292
content.style.opacity = '1';
9393
});
@@ -108,4 +108,4 @@
108108
}
109109

110110
initMap();
111-
// [END maps_advanced_markers_animation]
111+
// [END maps_advanced_markers_animation]

dist/samples/advanced-markers-animation/dist/assets/index-8dMt4WQJ.js renamed to dist/samples/advanced-markers-animation/dist/assets/index-DWiWq4Ww.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/samples/advanced-markers-animation/dist/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<head>
1010
<title>Advanced Markers CSS Animation</title>
1111

12-
<script type="module" crossorigin src="./assets/index-8dMt4WQJ.js"></script>
12+
<script type="module" crossorigin src="./assets/index-DWiWq4Ww.js"></script>
1313
<link rel="stylesheet" crossorigin href="./assets/index-DZArsvSd.css">
1414
</head>
1515
<body>

dist/samples/advanced-markers-animation/docs/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function createMarker(map, AdvancedMarkerElement, PinElement) {
7575
content: content,
7676
});
7777
content.style.opacity = '0';
78-
content.addEventListener('animationend', (event) => {
78+
content.addListener('animationend', (event) => {
7979
content.classList.remove('drop');
8080
content.style.opacity = '1';
8181
});

dist/samples/advanced-markers-animation/docs/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
});
8888

8989
content.style.opacity = '0';
90-
content.addEventListener('animationend', (event) => {
90+
content.addListener('animationend', (event) => {
9191
content.classList.remove('drop');
9292
content.style.opacity = '1';
9393
});
@@ -108,4 +108,4 @@
108108
}
109109

110110
initMap();
111-
// [END maps_advanced_markers_animation]
111+
// [END maps_advanced_markers_animation]

dist/samples/advanced-markers-animation/jsfiddle/demo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function createMarker(map, AdvancedMarkerElement, PinElement) {
7575
content: content,
7676
});
7777
content.style.opacity = '0';
78-
content.addEventListener('animationend', (event) => {
78+
content.addListener('animationend', (event) => {
7979
content.classList.remove('drop');
8080
content.style.opacity = '1';
8181
});

0 commit comments

Comments
 (0)