Fix eslint errors
This commit is contained in:
parent
efe5348943
commit
a47f00e7a1
1 changed files with 13 additions and 11 deletions
10
index.js
10
index.js
|
|
@ -1,12 +1,14 @@
|
||||||
(function ($) {
|
/* global jQuery */
|
||||||
|
|
||||||
|
(($) => {
|
||||||
|
|
||||||
$.fn.aalert = function (method) {
|
$.fn.aalert = function (method) {
|
||||||
if (methods[method]) {
|
if (methods[method]) {
|
||||||
return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
|
return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
|
||||||
} else {
|
}
|
||||||
|
|
||||||
$.error('Method ' + method + ' does not exist');
|
$.error('Method ' + method + ' does not exist');
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
var methods = {
|
var methods = {
|
||||||
|
|
@ -90,7 +92,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
$('.alert [data-dismiss="aalert"]').click(e => {
|
$('.alert [data-dismiss="aalert"]').click(e => {
|
||||||
$element = $(e.target).closest('.alert');
|
var $element = $(e.target).closest('.alert');
|
||||||
methods.close.apply($element);
|
methods.close.apply($element);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue