We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a502ad commit c022047Copy full SHA for c022047
src/main/scala/org/scalajs/dom/raw/Idb.scala
@@ -622,6 +622,14 @@ class IDBDatabase extends EventTarget {
622
*/
623
var onabort: js.Function1[Event, _] = js.native
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
+
633
/**
634
* The method takes the name of the store as well as a parameter object. The parameter
635
* object lets you define important optional properties. You can use the property to
0 commit comments