Skip to content
Snippets Groups Projects
Commit 3ad073e5 authored by Bekerle, Patrizio's avatar Bekerle, Patrizio :fire: Committed by Reiter, Christoph
Browse files

Print a note if notification web component was not present

parent 217bb517
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,8 @@ function send(options) { ...@@ -25,7 +25,8 @@ function send(options) {
// true means the event was not handled // true means the event was not handled
if (result) { if (result) {
alert((options.summary !== undefined && options.summary !== "" ? options.summary + ": " : "") + options.body) alert((options.summary !== undefined && options.summary !== "" ? options.summary + ": " : "") + options.body);
console.log("Use the web component vpu-notification to show fancy notifications.");
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment