From 984aa2912a94455f99074e040e7dcdd9769afa3e Mon Sep 17 00:00:00 2001 From: Dennis Reimann Date: Fri, 15 Nov 2019 13:56:03 +0100 Subject: [PATCH] Fix script order in main bundle creative.js relies on ScrollReveal being present on initialization, so it has to be included after scrollreveal.min.js --- BTCPayServer/bundleconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BTCPayServer/bundleconfig.json b/BTCPayServer/bundleconfig.json index 0f1ea05ae..9da088d34 100644 --- a/BTCPayServer/bundleconfig.json +++ b/BTCPayServer/bundleconfig.json @@ -15,13 +15,13 @@ "inputFiles": [ "wwwroot/vendor/jquery/jquery.js", "wwwroot/vendor/popper/popper.js", - "wwwroot/main/bootstrap/bootstrap.js", - "wwwroot/main/bootstrap4-creativestart/creative.js", "wwwroot/vendor/jquery-easing/jquery.easing.js", "wwwroot/vendor/scrollreveal/scrollreveal.min.js", "wwwroot/vendor/magnific-popup/jquery.magnific-popup.js", "wwwroot/vendor/moment/moment.min.js", "wwwroot/vendor/flatpickr/flatpickr.js", + "wwwroot/main/bootstrap/bootstrap.js", + "wwwroot/main/bootstrap4-creativestart/creative.js", "wwwroot/main/site.js" ] },