回答編集履歴

1

ondevicereadyからdevicereadyに修正

2020/02/14 09:40

投稿

moongift
moongift

スコア250

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