buildするとiframeの画面が表示できない。
デバッガーアプリを使ってのiframeを使った画面への画面遷移は可能ですが、
buildしたデバッグではiframeへの画面は遷移できません。
恐らく、プラグインが足りないのかなとは思ってやってみたのですが、、、分かりませんでした。
全部に共通するのはpushPageなのでこちらのプラグインが足りないのでしょうか?
どなたかお詳しい方はいらっしゃいますでしょうか?
どうか宜しくお願い致します。
<ons-navigator page="list.html" var="links.navi"></ons-navigator>
<ons-template id="list.html">
<ons-page id="links-list-page">
<ons-toolbar>
<div class="center"></div>
</ons-toolbar>
<ons-list>
<ons-list-item modifier="chevron" class="item">
<ons-row id="homepage">
<ons-col>
<header>
<span class="item-title">リスト01</span>
</header>
</ons-col>
</ons-row>
</ons-list-item>
</ons-list>
</ons-page>
</ons-template>
(function() {
var isAndroid = navigator.userAgent.indexOf('Android') != -1;
var _width = $(window).width();
var _height = $(window).height();
$(document).on('click', '#homepage', function() {
ons.navigator.pushPage('_links/list01.html');
});
})();