Remove the bootstrap javascript from the public js as it makes more sense to include as needed

This commit is contained in:
Kevin MacMartin 2019-11-14 21:07:47 -05:00
parent 831860bf8a
commit 8b6f1e5111
2 changed files with 0 additions and 4 deletions

2
gulpfile.js vendored
View file

@ -46,8 +46,6 @@ const jsPublic = "resources/assets/js/app.js";
// Javascript libraries for the public site // Javascript libraries for the public site
const jsPublicLibs = [ const jsPublicLibs = [
"node_modules/jquery/dist/jquery.js", "node_modules/jquery/dist/jquery.js",
"node_modules/popper.js/dist/umd/popper.js",
"node_modules/bootstrap/dist/js/bootstrap.js",
"node_modules/gsap/src/uncompressed/TweenMax.js", "node_modules/gsap/src/uncompressed/TweenMax.js",
"node_modules/what-input/dist/what-input.js" "node_modules/what-input/dist/what-input.js"
]; ];

View file

@ -44,8 +44,6 @@ const jsPublic = [
// Javascript libraries for the public site // Javascript libraries for the public site
const jsPublicLibs = [ const jsPublicLibs = [
"node_modules/jquery/dist/jquery.js", "node_modules/jquery/dist/jquery.js",
"node_modules/popper.js/dist/umd/popper.js",
"node_modules/bootstrap/dist/js/bootstrap.js",
"node_modules/gsap/src/uncompressed/TweenMax.js", "node_modules/gsap/src/uncompressed/TweenMax.js",
"node_modules/what-input/dist/what-input.js" "node_modules/what-input/dist/what-input.js"
]; ];