videomail-client 9.0.7 → 9.0.8
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": "9.0.
|
|
17276
|
+
"version": "9.0.8",
|
|
17277
17277
|
"description": "A wicked npm package to record videos directly in the browser, wohooo!",
|
|
17278
17278
|
"keywords": [
|
|
17279
17279
|
"webcam",
|
|
@@ -20722,11 +20722,11 @@ var Form = function Form(container, formElement, options) {
|
|
|
20722
20722
|
};
|
|
20723
20723
|
function startListeningToSubmitEvents() {
|
|
20724
20724
|
var submitButton = container.getSubmitButton();
|
|
20725
|
-
submitButton.
|
|
20725
|
+
submitButton.onclick = self.doTheSubmit.bind(self);
|
|
20726
20726
|
}
|
|
20727
20727
|
function stopListeningToSubmitEvents() {
|
|
20728
20728
|
var submitButton = container.getSubmitButton();
|
|
20729
|
-
submitButton.
|
|
20729
|
+
submitButton.onclick = null;
|
|
20730
20730
|
}
|
|
20731
20731
|
this.doTheSubmit = function (e) {
|
|
20732
20732
|
debug("Form: doTheSubmit()", e);
|