File tree 1 file changed +8
-0
lines changed
src/main/scala/org/scalajs/dom/raw
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -622,6 +622,14 @@ class IDBDatabase extends EventTarget {
622
622
*/
623
623
var onabort : js.Function1 [Event , _] = js.native
624
624
625
+ /**
626
+ * The onversionchange event handler of the IDBDatabase interface handles the versionchange
627
+ * event, fired when a database structure change (IDBOpenDBRequest.onupgradeneeded event or
628
+ * IDBFactory.deleteDatabase) was requested elsewhere (most probably in another window/tab
629
+ * on the same computer).
630
+ */
631
+ var onversionchange : js.Function1 [IDBVersionChangeEvent , _] = js.native
632
+
625
633
/**
626
634
* The method takes the name of the store as well as a parameter object. The parameter
627
635
* object lets you define important optional properties. You can use the property to
You can’t perform that action at this time.
0 commit comments