缺少 PNotify 更近

Missing PNotify closer

我正在使用 Pnotify 插件,但没有显示关闭按钮。

new PNotify({
                title: 'Sucesso',
                text: response.message,
                type: 'success',
                styling: 'bootstrap3',
                closer: true,
                labels: {close: "Fechar", stick: "Manter"}
            });

对这种行为有什么想法吗?

包含的文件有: pnotify.css pnotify.js

阅读完 documentation of Pnotify 后,您必须将 closer 包装在 buttons {} 选项中,并且 labels 也要包装。

new PNotify({
    title: 'Sucesso',
    text: response.message,
    type: 'success',
    styling: 'bootstrap3',
    buttons: { closer: true, 
        labels: {close: "Fechar", stick: "Manter"}
    },
});