2022-10-28 18:48:25 +02:00
|
|
|
/*
|
|
|
|
* Welcome to your app's main JavaScript file!
|
|
|
|
*
|
|
|
|
* We recommend including the built version of this JavaScript file
|
|
|
|
* (and its CSS file) in your base layout (base.html.twig).
|
|
|
|
*/
|
|
|
|
|
|
|
|
// any CSS you import will output into a single css file (app.css in this case)
|
2022-11-03 18:52:50 +01:00
|
|
|
import 'fork-awesome/scss/fork-awesome.scss'
|
|
|
|
import './styles/app.scss'
|
|
|
|
import $ from 'jquery'
|
|
|
|
import 'bootstrap'
|
|
|
|
//import './js/index'
|
|
|
|
// needed for legacy code
|
|
|
|
//global.$ = $
|
2022-10-28 18:48:25 +02:00
|
|
|
|
2022-11-03 18:52:50 +01:00
|
|
|
if (window.matchMedia('(prefers-color-scheme)').media !== 'not all') {
|
|
|
|
console.log('🎉 Dark mode is supported')
|
|
|
|
}
|
|
|
|
|
|
|
|
$(document).ready(() => {
|
|
|
|
console.log('ready')
|
|
|
|
$('#toggleSidebar').on('click', () => {
|
|
|
|
const toggleIcon = $('#toggleIcon')
|
|
|
|
toggleIcon.toggleClass('fa fa-lg fa-fw fa-caret-square-o-left')
|
|
|
|
toggleIcon.toggleClass('fa fa-lg fa-fw fa-caret-square-o-right')
|
|
|
|
$('#sidebar').toggleClass('active')
|
|
|
|
})
|
|
|
|
})
|
2022-10-28 18:48:25 +02:00
|
|
|
// start the Stimulus application
|
2022-11-03 18:52:50 +01:00
|
|
|
//import './bootstrap'
|