1 | jaxon.dialogs.notify = { |
||
0 ignored issues
–
show
|
|||
2 | success: function(content, title) { |
||
0 ignored issues
–
show
|
|||
3 | $.notify(content, {className: 'success', position: "top center"}); |
||
4 | }, |
||
5 | info: function(content, title) { |
||
0 ignored issues
–
show
|
|||
6 | $.notify(content, {className: 'info', position: "top center"}); |
||
7 | }, |
||
8 | warning: function(content, title) { |
||
0 ignored issues
–
show
|
|||
9 | $.notify(content, {className: 'warn', position: "top center"}); |
||
10 | }, |
||
11 | error: function(content, title) { |
||
0 ignored issues
–
show
|
|||
12 | $.notify(content, {className: 'error', position: "top center"}); |
||
13 | } |
||
14 | }; |
||
15 |
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.