回答編集履歴
1
ondevicereadyからdevicereadyに修正
test
CHANGED
@@ -14,7 +14,9 @@
|
|
14
14
|
|
15
15
|
// スマホアプリの場合はondeviceready、プレビューはDOMContentLoadedを利用
|
16
16
|
|
17
|
+
// ondevicereadyからdevicereadyに修正済み
|
18
|
+
|
17
|
-
const event = window.cordova ? '
|
19
|
+
const event = window.cordova ? 'deviceready' : 'DOMContentLoaded';
|
18
20
|
|
19
21
|
document.addEventListener(event, function() {
|
20
22
|
|