遗失了PNotify

时间:2016-10-20 10:27:02

标签: php jquery html twitter-bootstrap-3 pnotify

我正在使用Pnotify插件,但没有显示更接近的按钮。

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

有关此行为的任何想法?

generated pnotify example

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

1 个答案:

答案 0 :(得分:1)

阅读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"}
    },
});