videomail-client 8.3.22 → 8.3.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -17273,7 +17273,7 @@ function wrappy (fn, cb) {
|
|
|
17273
17273
|
},{}],114:[function(_dereq_,module,exports){
|
|
17274
17274
|
module.exports={
|
|
17275
17275
|
"name": "videomail-client",
|
|
17276
|
-
"version": "8.3.
|
|
17276
|
+
"version": "8.3.23",
|
|
17277
17277
|
"description": "A wicked npm package to record videos directly in the browser, wohooo!",
|
|
17278
17278
|
"author": "Michael Heuberger <michael.heuberger@binarykitchen.com>",
|
|
17279
17279
|
"contributors": [
|
|
@@ -20569,7 +20569,7 @@ var Form = function Form(container, formElement, options) {
|
|
|
20569
20569
|
if (videomail[name]) {
|
|
20570
20570
|
input.value = videomail[name];
|
|
20571
20571
|
// Important so that any other JS framework can detect changes
|
|
20572
|
-
input.dispatchEvent(new Event("
|
|
20572
|
+
input.dispatchEvent(new Event("input", {
|
|
20573
20573
|
bubbles: true
|
|
20574
20574
|
}));
|
|
20575
20575
|
}
|
|
@@ -20656,7 +20656,7 @@ var Form = function Form(container, formElement, options) {
|
|
|
20656
20656
|
} else if (videomailKey) {
|
|
20657
20657
|
keyInput.value = videomailKey;
|
|
20658
20658
|
// Important so that any other JS framework can detect changes
|
|
20659
|
-
keyInput.dispatchEvent(new Event("
|
|
20659
|
+
keyInput.dispatchEvent(new Event("input", {
|
|
20660
20660
|
bubbles: true
|
|
20661
20661
|
}));
|
|
20662
20662
|
}
|
|
@@ -20668,7 +20668,7 @@ var Form = function Form(container, formElement, options) {
|
|
|
20668
20668
|
// fixes https://github.com/binarykitchen/videomail-client/issues/91
|
|
20669
20669
|
this.on(_events.default.GOING_BACK, function () {
|
|
20670
20670
|
keyInput.value = null;
|
|
20671
|
-
keyInput.dispatchEvent(new Event("
|
|
20671
|
+
keyInput.dispatchEvent(new Event("input", {
|
|
20672
20672
|
bubbles: true
|
|
20673
20673
|
}));
|
|
20674
20674
|
});
|