Skip to content
Snippets Groups Projects
Commit 35e72ea9 authored by Will Roberts's avatar Will Roberts
Browse files

js code: fix eslint errors

parent ba032307
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@
"node": true
},
"globals": {
"__dirname": true
"__dirname": true,
"jQuery": true
}
}
......@@ -5,9 +5,9 @@
*/
// JavaScript modules
require("jquery");
require("font-awesome-webpack");
require("bootstrap");
require('jquery');
require('font-awesome-webpack');
require('bootstrap');
// Your own code
require('./plugins.js');
......
// place any jQuery/helper plugins in here, instead of separate, slower script files.
\ No newline at end of file
// place any jQuery/helper plugins in here, instead of separate, slower script files.
(function($, window) {
(function myfunc($, window) { // eslint-disable-line no-unused-vars
}).call(this, jQuery, window);
}.call(this, jQuery, window));
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment