mirror of https://github.com/ColorlibHQ/gentelella
26 lines
525 B
JavaScript
26 lines
525 B
JavaScript
![]() |
|
||
|
// 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
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
});
|