i4way-dash/.svn/pristine/13/132763f47e9cea9b317cadd318e...

26 lines
525 B
Plaintext

// 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
}
});
});
});