From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../ja/web/api/notification/maxactions/index.html | 67 ++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 files/ja/web/api/notification/maxactions/index.html (limited to 'files/ja/web/api/notification/maxactions') diff --git a/files/ja/web/api/notification/maxactions/index.html b/files/ja/web/api/notification/maxactions/index.html new file mode 100644 index 0000000000..437e8e8fb4 --- /dev/null +++ b/files/ja/web/api/notification/maxactions/index.html @@ -0,0 +1,67 @@ +--- +title: Notification.maxActions +slug: Web/API/Notification/maxActions +tags: + - API + - Notification + - Notifications + - Notifications API + - Property + - Reference + - actions + - プロパティ + - 通知 +translation_of: Web/API/Notification/maxActions +--- +

{{APIRef("Web Notifications")}}{{AvailableInWorkers}}{{securecontext_header}}

+ +

maxActions は {{domxref("Notification")}} インターフェイスの属性で、端末とユーザーエージェントが対応するアクションの最大数を返します。実質的には、これはユーザーエージェントが尊重する {{domxref("Notification.actions")}} 配列の最大数です。

+ +

構文

+ +
Notification.maxActions
+
+ +

+ +

整数の {{JSxRef("Number")}} で、ユーザ-エージェントと端末がユーザーに提示することができるできる通知アクションの最大数を示します。

+ +

+ +

以下のスニペットは、対応するアクションの最大数をログ出力します。

+ +
const maxActions = Notification.maxActions;
+console.log('This device can display at most ' + maxActions + ' actions on each notification.');
+
+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('Web Notifications','#dom-notification-actions','actions')}}{{Spec2('Web Notifications')}}Living standard
+ +

ブラウザーの互換性

+ + + +

{{Compat("api.Notification.actions")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf