moved content from index.js
This commit is contained in:
parent
990330ee5e
commit
33ee23dc39
|
@ -6,7 +6,26 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// any CSS you import will output into a single css file (app.css in this case)
|
// any CSS you import will output into a single css file (app.css in this case)
|
||||||
import './styles/app.css';
|
import 'fork-awesome/scss/fork-awesome.scss'
|
||||||
|
import './styles/app.scss'
|
||||||
|
import $ from 'jquery'
|
||||||
|
import 'bootstrap'
|
||||||
|
//import './js/index'
|
||||||
|
// needed for legacy code
|
||||||
|
//global.$ = $
|
||||||
|
|
||||||
|
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')
|
||||||
|
})
|
||||||
|
})
|
||||||
// start the Stimulus application
|
// start the Stimulus application
|
||||||
import './bootstrap';
|
//import './bootstrap'
|
||||||
|
|
Loading…
Reference in New Issue