videomail-client 8.3.18 → 8.3.19

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": "8.3.18",
3
+ "version": "8.3.19",
4
4
  "description": "A wicked npm package to record videos directly in the browser, wohooo!",
5
5
  "author": "Michael Heuberger <michael.heuberger@binarykitchen.com>",
6
6
  "contributors": [
@@ -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.18",
17276
+ "version": "8.3.19",
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": [
@@ -21714,10 +21714,11 @@ var Notifier = function Notifier(visuals, options) {
21714
21714
  entertaining = false;
21715
21715
  }
21716
21716
  function setMessage(message, messageOptions) {
21717
- var problem = messageOptions.problem ? messageOptions.problem : false;
21717
+ options.debug("Notifier: setMessage()", message);
21718
21718
  var notifierMessage = getNotifierMessage();
21719
21719
  if (notifierMessage) {
21720
21720
  if (message.length > 0) {
21721
+ var problem = messageOptions.problem ? messageOptions.problem : false;
21721
21722
  notifierMessage.innerHTML = (problem ? "&#x2639; " : "") + message;
21722
21723
  } else {
21723
21724
  options.logger.warn("Not going to update notifierMessage element because message is empty", message);
@@ -21771,13 +21772,11 @@ var Notifier = function Notifier(visuals, options) {
21771
21772
  function hideMessage() {
21772
21773
  var notifierMessage = getNotifierMessage();
21773
21774
  if (notifierMessage) {
21774
- notifierMessage.innerHTML = null;
21775
21775
  (0, _hidden.default)(notifierMessage, true);
21776
21776
  }
21777
21777
  }
21778
21778
  function hideExplanation() {
21779
21779
  if (explanationElement) {
21780
- explanationElement.innerHTML = null;
21781
21780
  (0, _hidden.default)(explanationElement, true);
21782
21781
  }
21783
21782
  }