From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/fr/archive/b2g_os/api/callevent/index.html | 130 +++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 files/fr/archive/b2g_os/api/callevent/index.html (limited to 'files/fr/archive/b2g_os/api/callevent') diff --git a/files/fr/archive/b2g_os/api/callevent/index.html b/files/fr/archive/b2g_os/api/callevent/index.html new file mode 100644 index 0000000000..9b140224a9 --- /dev/null +++ b/files/fr/archive/b2g_os/api/callevent/index.html @@ -0,0 +1,130 @@ +--- +title: CallEvent +slug: Archive/B2G_OS/API/CallEvent +translation_of: Archive/B2G_OS/API/CallEvent +--- +

+ +

+

Non standard
+ Cette fonctionnalité n'est ni standard, ni en voie de standardisation. Ne l'utilisez pas pour des sites accessibles sur le Web : elle ne fonctionnera pas pour tout utilisateur. Il peut également y avoir d'importantes incompatibilités entre les implémentations et son comportement peut être modifié dans le futur.

+

+ +

+

Cette API est disponible sur Firefox OS pour des applications internes seulement.

+

+ +

L'interface CallEvent de l'API Web Téléphony représente les événements liés aux appels téléphoniques.

+ +

Propriétés

+ +
+
CallEvent.call Lecture seule
+
Un objet TelephonyCall représantant l'appel à l'origine de l'événement.
+
+ +

Examples

+ +
// Telephony object
+var tel = navigator.mozTelephony;
+
+// Receive a call
+tel.onincoming = function(e) {
+  var incomingCall = e.call;
+
+  // Answer the call
+  incomingCall.answer();
+};
+ +

Specifications

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
Web TelephonyProjetDraft
+ +

Browser compatibility

+ +

For obvious reasons, support is primarily expected on mobile browsers.

+ +

Nous convertissons les données de compatibilité dans un format JSON. + Ce tableau de compatibilité utilise encore l'ancien format + car nous n'avons pas encore converti les données qu'il contient. + Vous pouvez nous aider en contribuant !

+ +
+ + +

+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic supportPas de supportPas de supportPas de supportPas de supportPas de support
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
FeatureAndroidFirefox Mobile (Gecko)Firefox OS (Gecko)IE MobileOpera MobileSafari Mobile
Basic supportPas de support12.0 (12.0)1.0.1Pas de supportPas de supportPas de support
+
+ +

See also

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