File tree Expand file tree Collapse file tree 8 files changed +9199
-5706
lines changed Expand file tree Collapse file tree 8 files changed +9199
-5706
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -92,8 +92,6 @@ function concatCssPlugins() {
9292 return src ( [
9393 nodepath + "simplebar/dist/simplebar.min.css" ,
9494 nodepath + "plyr/dist/plyr.css" ,
95- nodepath + "codemirror/lib/codemirror.css" ,
96- nodepath + "codemirror/theme/shadowfox.css" ,
9795 "src/vendor/css/*" ,
9896 ] )
9997 . pipe ( sourcemaps . init ( ) )
Original file line number Diff line number Diff line change 2727 "setup" : " gulp setup"
2828 },
2929 "dependencies" : {
30- "@alpinejs/intersect" : " ^3.9.0" ,
31- "@alpinejs/persist" : " ^3.7.1" ,
30+ "@alpinejs/intersect" : " ^3.10.2" ,
31+ "@alpinejs/persist" : " ^3.10.2" ,
32+ "@alpinejs/collapse" : " ^3.10.2" ,
3233 "@ryangjchandler/fern" : " ^0.1.0" ,
33- "alpinejs" : " ^3.9.0 " ,
34- "bulma" : " ^0.9.3 " ,
34+ "alpinejs" : " ^3.10.2 " ,
35+ "bulma" : " ^0.9.4 " ,
3536 "aos" : " 3.0.0-beta.6" ,
36- "codemirror" : " 5.64.0" ,
3737 "feather-icons" : " 4.28.0" ,
38- "ionicons" : " 6.0.0" ,
3938 "js-datepicker" : " 5.18.0" ,
4039 "notyf" : " 3.10.0" ,
4140 "plyr" : " 3.6.9" ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ export function initCountdown() {
22 return {
33 setupCountdown ( ) {
44 // Set the date we're counting down to
5- var countDownDate = new Date ( "Oct 24, 2021 07:00:00" ) . getTime ( ) ;
5+ var countDownDate = new Date ( "Oct 24, 2023 07:00:00" ) . getTime ( ) ;
66
77 // Update the count down every 1 second
88 var x = setInterval ( function ( ) {
Original file line number Diff line number Diff line change @@ -4,27 +4,6 @@ export function getUrlParams(param) {
44 return urlParams . get ( param ) ;
55}
66
7- export function switchDemoImages ( environment ) {
8- if ( environment === "development" ) {
9- const targets = document . querySelectorAll ( "[data-demo-src]" ) ;
10- const bgTargets = document . querySelectorAll ( "[data-demo-background]" ) ;
11-
12- if ( typeof targets != "undefined" && targets != null ) {
13- for ( var i = 0 , len = targets . length ; i < len ; i ++ ) {
14- let demoUrl = targets [ i ] . getAttribute ( "data-demo-src" ) ;
15- targets [ i ] . setAttribute ( "src" , demoUrl ) ;
16- }
17- }
18-
19- if ( typeof bgTargets != "undefined" && bgTargets != null ) {
20- for ( var i = 0 , len = bgTargets . length ; i < len ; i ++ ) {
21- let demoBgUrl = bgTargets [ i ] . getAttribute ( "data-demo-background" ) ;
22- bgTargets [ i ] . setAttribute ( "data-background" , demoBgUrl ) ;
23- }
24- }
25- }
26- }
27-
287export function insertBgImages ( ) {
298 const targets = document . querySelectorAll ( "[data-background]" ) ;
309
Original file line number Diff line number Diff line change @@ -19,16 +19,13 @@ Alpine.persistedStore("app", {
1919//Start Alpine JS
2020Alpine . start ( ) ;
2121
22- import { initPageLoader } from ' ./libs/components/pageloader/pageloader' ;
23- import ' ./libs/components'
22+ import { initPageLoader } from " ./libs/components/pageloader/pageloader" ;
23+ import " ./libs/components" ;
2424
2525const showPageloader = initPageLoader ( ) ;
2626
2727document . onreadystatechange = function ( ) {
2828 if ( document . readyState == "complete" ) {
29- //Switch demo images
30- const changeImages = switchDemoImages ( env ) ;
31-
3229 //Switch backgrounds
3330 const changeBackgrounds = insertBgImages ( ) ;
3431
You can’t perform that action at this time.
0 commit comments