0byt3m1n1
Path:
C:
/
wamp64
/
www
/
cpms_new
/
gentelella-1.3.0
/
vendors
/
pnotify
/
libtests
/
browserify
/
[
Home
]
File: index.js
// Not working? Did you `npm install` `npm run build` first? var $ = require("jquery"); var PNotify = require("pnotify"); $(function(){ $("#button1").click(function(){ new PNotify({ title: "Yay!", text: "It works!" }); }); $("#button12").click(function(){ require("pnotify.reference"); new PNotify({ title: "Yay!", text: "It works!", reference: { put_thing: true } }); }); });