Total Complexity | 2 |
Complexity/F | 1 |
Lines of Code | 11 |
Function Count | 2 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | (function($) { |
||
2 | $(document).ready(function () { |
||
3 | var glide = new Glide('#banner-slider', { |
||
|
|||
4 | autoplay: 5000, |
||
5 | hoverpause: false, |
||
6 | type: 'carousel', |
||
7 | }); |
||
8 | |||
9 | glide.mount(); |
||
10 | }); |
||
11 | })(jQuery); |
||
12 |
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.