LoginSignup
0
0

More than 3 years have passed since last update.

kintoneカスタマイズ基礎-モバイルの動作-

Last updated at Posted at 2019-11-13

kintoneのアプリをモバイルで開いた時に、アラートを出す


(function() {
    "use strict";
    //レコードの一覧、詳細画面で適用する
    var events = ['mobile.app.record.index.show',
                    'mobile.app.record.detail.show'
                ];
    kintone.events.on(events, function(event) {
        alert('このアプリはモバイル対応しておりません。TOP画面に戻ります。');
        location.href = 'アラートを閉じた後に飛ばしたいURL';
    });
})();
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0