--- title: Notification.maxActions slug: Web/API/notification/maxActions tags: - API - API Notifications - Notification - Notifications - Propriété - Reference - actions translation_of: Web/API/Notification/maxActions ---
{{APIRef("Web Notifications")}}{{AvailableInWorkers}}{{securecontext_header}}
L'attribut maxActions
de l'interface {{domxref ("Notification")}} renvoie le nombre maximal d'actions prises en charge par l'appareil et l'agent utilisateur. En effet, c'est le nombre maximum d'éléments dans le tableau {{domxref ("Notification.actions")}} qui seront respectés par l'agent utilisateur.
Notification.maxActions
Un entier {{JSxRef ("Number")}} qui indique le plus grand nombre d'actions de notification pouvant être présentées à l'utilisateur par l'agent utilisateur et l'appareil.
L'extrait de code suivant enregistre le nombre maximal d'actions prises en charge.
const { maxActions } = Notification console.log(`This device can display at most ${maxActions} actions on each notification.`);
Spécification | Status | Comment |
---|---|---|
{{SpecName("Web Notifications")}} | {{Spec2("Web Notifications")}} | Living standard |
{{Compat("api.Notification.maxActions")}}