PHP Classes

File: vendors/gentelella/vendors/pnotify/libtests/browserify/index.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/gentelella/vendors/pnotify/libtests/browserify/index.js   Download  
File: vendors/gentelella/vendors/pnotify/libtests/browserify/index.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 3 years ago
Size: 525 bytes
 

Contents

Class file image Download
// 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 } }); }); });