Leo Nogueira
Leo Nogueira

Reputation: 108

Missing PNotify closer

Im using Pnotify plugin, but the closer button is not showing.

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

Any ideas about this behavior?

generated pnotify example

Included files are: pnotify.css pnotify.js

Upvotes: 0

Views: 1790

Answers (1)

Black Sheep
Black Sheep

Reputation: 6694

After read the documentation of Pnotify you have to wrap closer inside the buttons {} options and labels too.

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

Upvotes: 2

Related Questions