File tree 8 files changed +9199
-5706
lines changed
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() {
92
92
return src ( [
93
93
nodepath + "simplebar/dist/simplebar.min.css" ,
94
94
nodepath + "plyr/dist/plyr.css" ,
95
- nodepath + "codemirror/lib/codemirror.css" ,
96
- nodepath + "codemirror/theme/shadowfox.css" ,
97
95
"src/vendor/css/*" ,
98
96
] )
99
97
. pipe ( sourcemaps . init ( ) )
Original file line number Diff line number Diff line change 27
27
"setup" : " gulp setup"
28
28
},
29
29
"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" ,
32
33
"@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 " ,
35
36
"aos" : " 3.0.0-beta.6" ,
36
- "codemirror" : " 5.64.0" ,
37
37
"feather-icons" : " 4.28.0" ,
38
- "ionicons" : " 6.0.0" ,
39
38
"js-datepicker" : " 5.18.0" ,
40
39
"notyf" : " 3.10.0" ,
41
40
"plyr" : " 3.6.9" ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ export function initCountdown() {
2
2
return {
3
3
setupCountdown ( ) {
4
4
// 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 ( ) ;
6
6
7
7
// Update the count down every 1 second
8
8
var x = setInterval ( function ( ) {
Original file line number Diff line number Diff line change @@ -4,27 +4,6 @@ export function getUrlParams(param) {
4
4
return urlParams . get ( param ) ;
5
5
}
6
6
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
-
28
7
export function insertBgImages ( ) {
29
8
const targets = document . querySelectorAll ( "[data-background]" ) ;
30
9
Original file line number Diff line number Diff line change @@ -19,16 +19,13 @@ Alpine.persistedStore("app", {
19
19
//Start Alpine JS
20
20
Alpine . start ( ) ;
21
21
22
- import { initPageLoader } from ' ./libs/components/pageloader/pageloader' ;
23
- import ' ./libs/components'
22
+ import { initPageLoader } from " ./libs/components/pageloader/pageloader" ;
23
+ import " ./libs/components" ;
24
24
25
25
const showPageloader = initPageLoader ( ) ;
26
26
27
27
document . onreadystatechange = function ( ) {
28
28
if ( document . readyState == "complete" ) {
29
- //Switch demo images
30
- const changeImages = switchDemoImages ( env ) ;
31
-
32
29
//Switch backgrounds
33
30
const changeBackgrounds = insertBgImages ( ) ;
34
31
You can’t perform that action at this time.
0 commit comments