From bc1d9a72401b8a040657050411d841db82f913a7 Mon Sep 17 00:00:00 2001 From: Konrad Date: Sat, 2 Dec 2017 21:26:35 +0100 Subject: [PATCH] Sample PNotify message is not a part of release --- build/js/custom.js | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/build/js/custom.js b/build/js/custom.js index 29b5db5f..039ba1f6 100644 --- a/build/js/custom.js +++ b/build/js/custom.js @@ -1841,29 +1841,6 @@ if (typeof NProgress != 'undefined') { if( typeof (PNotify) === 'undefined'){ return; } console.log('init_PNotify'); - - new PNotify({ - title: "PNotify", - type: "info", - text: "Welcome. Try hovering over me. You can click things behind me, because I'm non-blocking.", - nonblock: { - nonblock: true - }, - addclass: 'dark', - styling: 'bootstrap3', - hide: false, - before_close: function(PNotify) { - PNotify.update({ - title: PNotify.options.title + " - Enjoy your Stay", - before_close: null - }); - - PNotify.queueRemove(); - - return false; - } - }); - };