File "index.js"
Full Path: /home/cananyalcin/public_html/vendors/pnotify/libtests/browserify/index.js
File size: 525 bytes
MIME-type: text/plain
Charset: utf-8
// 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
}
});
});
});