blob: 39c94deb9af0dc9c39540bf61dabb5462281e7f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
---
title: window.cancelIdleCallback()
slug: Web/API/Window/cancelIdleCallback
translation_of: Web/API/Window/cancelIdleCallback
---
<div>{{APIRef}}{{SeeCompatTable}}</div>
<p>La méthode <strong><code>window.cancelIdleCallback()</code></strong> annule une fonction précedemment planifiée via {{domxref("window.requestIdleCallback()")}}.</p>
<h2 id="Syntax">Syntaxe</h2>
<pre class="syntaxbox">window.cancelIdleCallback(<em>idleCallbackId</em>);</pre>
<h3 id="Parameters">Paramètres</h3>
<dl>
<dt>idleCallbackId</dt>
<dd>L'entier long non-signé retourné par {{domxref("window.requestIdleCallback()")}}.</dd>
</dl>
<h2 id="Specifications">Spécifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th>Spécification</th>
<th>Status</th>
<th>Commentaire</th>
</tr>
<tr>
<td>{{SpecName('Background Tasks')}}</td>
<td>{{Spec2('Background Tasks')}}</td>
<td>Définition initiale.</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Window.cancelIdleCallback")}}</p>
|