Issues (79)

templates/notify/alert.js (5 issues)

1
jaxon.dialogs.notify = {
0 ignored issues
show
The variable jaxon seems to be never declared. If this is a global, consider adding a /** global: jaxon */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
2
    success: function(content, title) {
0 ignored issues
show
The parameter title is not used and could be removed.

This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.

Loading history...
3
        $.notify(content, {className: 'success', position: "top center"});
4
    },
5
    info: function(content, title) {
0 ignored issues
show
The parameter title is not used and could be removed.

This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.

Loading history...
6
        $.notify(content, {className: 'info', position: "top center"});
7
    },
8
    warning: function(content, title) {
0 ignored issues
show
The parameter title is not used and could be removed.

This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.

Loading history...
9
        $.notify(content, {className: 'warn', position: "top center"});
10
    },
11
    error: function(content, title) {
0 ignored issues
show
The parameter title is not used and could be removed.

This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.

Loading history...
12
        $.notify(content, {className: 'error', position: "top center"});
13
    }
14
};
15