为什么 PNotify 选项“after_open”不起作用?
Why PNotify option `after_open` doesn't work?
我找到了
但是属性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
问题出在哪里?
使用 callbacks
需要包含(额外的 pnotify 模块)
'use strict';
let PNotify = require('pnotify');
require('pnotify/dist/pnotify.callbacks.js');
/* next code */
我找到了
但是属性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
问题出在哪里?
使用 callbacks
需要包含(额外的 pnotify 模块)
'use strict';
let PNotify = require('pnotify');
require('pnotify/dist/pnotify.callbacks.js');
/* next code */