但是属性after_open
不起作用
我使用webpack
和npm
pnotify package下一个代码:
entry.js
'use strict';
let PNotify = require('pnotify');
PNotify.prototype.options.styling = 'bootstrap3';
(new PNotify({
//...
after_open(ui) {console.log('after_open');},
//...
}));
通知显示,但没有after_open
问题出在哪里?
答案 0 :(得分:1)
使用callbacks
需要包含(额外的pnotify模块)
'use strict';
let PNotify = require('pnotify');
require('pnotify/dist/pnotify.callbacks.js');
/* next code */