aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/indexeddb/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/indexeddb/index.html')
-rw-r--r--files/fr/web/api/indexeddb/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/fr/web/api/indexeddb/index.html b/files/fr/web/api/indexeddb/index.html
index 7d8aaa0ed5..78d82dae7a 100644
--- a/files/fr/web/api/indexeddb/index.html
+++ b/files/fr/web/api/indexeddb/index.html
@@ -24,7 +24,7 @@ original_slug: Web/API/WindowOrWorkerGlobalScope/indexedDB
<h2 id="Exemples">Exemples</h2>
-<pre class="brush: js;highlight:[3]">var db;
+<pre class="brush: js">var db;
function openDB() {
var DBOpenRequest = window.indexedDB.open('toDoList');
DBOpenRequest.onsuccess = function(e) {
@@ -73,5 +73,5 @@ function openDB() {
<li>Définir un intervalle de clés : {{domxref("IDBKeyRange")}}</li>
<li>Récupérer et modifier les données : {{domxref("IDBObjectStore")}}</li>
<li>Utiliser les curseurs {{domxref("IDBCursor")}}</li>
- <li>Exemple de référence : <a class="external" href="https://github.com/mdn/to-do-notifications/tree/gh-pages">To-do Notifications</a> (<a class="external" href="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></a>).</li>
+ <li>Exemple de référence : <a href="https://github.com/mdn/to-do-notifications/tree/gh-pages">To-do Notifications</a> (<a href="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></a>).</li>
</ul>