Mobile Only in Gecko 2.0
Available only in Firefox Mobile as of Gecko 2.0 (Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1)
No estándar
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
Proporciona soporte para la creación de objetos notification
, que son usados para mostrar alertas de notificaciones de escritorio al usuario. Actualmente, estos son admitidos sólamente en Firefox Mobile y Firefox OS. Vea Mostrar notificaciones para un ejemplo.
Resumen del método
notification createNotification(in DOMString title, in DOMString description, in DOMString iconURL Optional); |
Métodos
createNotification()
Crea y devuelve un objeto notification
que puede ser usado para mostrar el mensaje especificado con una URL opcional.
notification createNotification(
in DOMString title,
in DOMString description,
in DOMString iconURL Optional
);
Parámetros
title
- El título de la notificación.
description
- El texto que se muestra en la notificación.
iconURL
Optional- Un identificador URL de la imagen que se mostrará en la notificación.
Valor de retorno
Un nuevo objeto notification
.
Permisos
Asegúrese de agregar en su archivo manifiesto el permiso "desktop-notification".
"permissions": {
"desktop-notification":{}
}