lint compliance

pull/1/head
yflory 2020-12-10 13:03:22 +01:00
parent 0411aa3c4a
commit f21eb64fc2
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ define([
// Check if indexedDB is allowed
var allowed = false;
try {
let request = indexedDB.open('mydatabase', 1);
var request = window.indexedDB.open('test_db', 1);
request.onsuccess = function () {
allowed = true;
onReady.fire();