We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e72f0b1 commit 02dff22Copy full SHA for 02dff22
www/src/js/cookie/game.js
@@ -25,8 +25,8 @@ $(".cookie").on("click", function (e) {
25
const Y = e.pageY - offset.top;
26
27
$effect.css({
28
- left: X + "px",
29
- top: Y + "px",
+ left: `${X}px`,
+ top: `${Y}px`,
30
position: "absolute",
31
});
32
www/src/plugins/admob.ts
@@ -65,12 +65,12 @@ function $award() {
65
}
66
67
$(() => {
68
- /* if (window.Capacitor.getPlatform() !== "android") {
+ if (window.Capacitor.getPlatform() !== "android") {
69
console.log(
70
`AdMob: Unsupported platform (${window.Capacitor.getPlatform()})`,
71
);
72
return;
73
- }*/
+ }
74
75
AdMob.initialize()
76
.then(() => {
0 commit comments