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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "videomail-client",
3
- "version": "9.0.7",
3
+ "version": "9.0.8",
4
4
  "description": "A wicked npm package to record videos directly in the browser, wohooo!",
5
5
  "keywords": [
6
6
  "webcam",
@@ -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.7",
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.addEventListener("click", self.doTheSubmit.bind(self));
20725
+ submitButton.onclick = self.doTheSubmit.bind(self);
20726
20726
  }
20727
20727
  function stopListeningToSubmitEvents() {
20728
20728
  var submitButton = container.getSubmitButton();
20729
- submitButton.removeEventListener("click", self.doTheSubmit.bind(self));
20729
+ submitButton.onclick = null;
20730
20730
  }
20731
20731
  this.doTheSubmit = function (e) {
20732
20732
  debug("Form: doTheSubmit()", e);