Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function () {
- require.config({
- paths: {
- "jquery": "/content/lib/jquery-2.1.1.min",
- "noty": "/content/lib/jquery.noty.packaged.min",
- "$q": "/content/lib/q",
- "notifier": "/content/js/notifier"
- }
- });
- })();
- (function() {
- require(["jquery", "noty", "$q", "notifier"],
- function ($, noty, $q, notifier) {
- $("#btn").click(function (){
- var n = new notifier();
- n.showSuccessMessage('Success');
- });
- });
- })();
Advertisement
Add Comment
Please, Sign In to add comment