Skip to content
This repository has been archived by the owner on Apr 29, 2023. It is now read-only.

Commit

Permalink
Support smartphone
Browse files Browse the repository at this point in the history
  • Loading branch information
matsuo committed Feb 9, 2020
1 parent 2080d69 commit 173a78f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@

## 注意点

* “Referrer-Policy: same-origin”に対応していないWebブラウザーでは、本プラグインによる効果はありません。Internet ExplorerやMicrosoft Edge(Chromeベースではないもの)、iOSのSafariを利用している場合には、リファラー情報の外部への送信は抑制されません(2020年1月現在)。
* “Referrer-Policy: same-origin”に対応していないWebブラウザーでは、本プラグインによる効果はありません。例えば、Internet ExplorerやMicrosoft Edge(Chromiumベースではないもの)を利用している場合には、リファラー情報の外部への送信は抑制されません(2020年2月現在)。

## ライセンス

* ライセンスはMITライセンスです。

## 変更履歴

* バージョン1.2(2020/02/09):スマートフォンに対応しました。
* バージョン1.1(2020/01/30):印刷用画面でリファラーポリシーが正しく設定されていなかった不具合を修正しました。
* バージョン1.0(2020/01/30):最初のリリースバージョン。
2 changes: 1 addition & 1 deletion src/js/referrer-policy-for-kintone.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(function() {
'use strict';
kintone.events.on(['app.record.index.show', 'app.record.detail.show', 'app.record.create.show', 'app.record.edit.show', 'app.record.print.show', 'app.report.show', 'portal.show'], function(e) {
kintone.events.on(['app.record.index.show', 'app.record.detail.show', 'app.record.create.show', 'app.record.edit.show', 'app.record.print.show', 'app.report.show', 'portal.show', 'mobile.app.record.index.show', 'mobile.app.record.detail.show', 'mobile.app.record.create.show', 'mobile.app.record.edit.show', 'mobile.app.report.show', 'portal.show'], function(e) {
var element = document.createElement('meta');
element.setAttribute('name', 'referrer');
element.setAttribute('content', 'same-origin');
Expand Down

0 comments on commit 173a78f

Please sign in to comment.