2019-11-01 13:40:30 +01:00
|
|
|
/*
|
2020-02-22 18:14:36 +01:00
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
2019-11-01 13:40:30 +01:00
|
|
|
*
|
2020-02-22 18:14:36 +01:00
|
|
|
* Copyright (C) 2019 - 2020 Jan Böhmer (https://github.com/jbtronics)
|
2019-11-01 13:40:30 +01:00
|
|
|
*
|
2020-02-22 18:14:36 +01:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2019-11-01 13:40:30 +01:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2020-02-22 18:14:36 +01:00
|
|
|
* GNU Affero General Public License for more details.
|
2019-11-01 13:40:30 +01:00
|
|
|
*
|
2020-02-22 18:14:36 +01:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-11-01 13:40:30 +01:00
|
|
|
*/
|
|
|
|
|
2022-03-04 20:59:08 +01:00
|
|
|
// Main CSS files
|
2022-12-11 23:05:22 +01:00
|
|
|
//import '../css/app.css';
|
|
|
|
|
|
|
|
import '../css/app/layout.css';
|
|
|
|
import '../css/app/helpers.css';
|
|
|
|
import '../css/app/tables.css';
|
|
|
|
import '../css/app/bs-overrides.css';
|
|
|
|
import '../css/app/treeview.css';
|
2023-02-05 20:06:53 +01:00
|
|
|
import '../css/app/images.css';
|
2022-03-04 20:59:08 +01:00
|
|
|
|
|
|
|
// start the Stimulus application
|
|
|
|
import '../bootstrap';
|
2019-02-24 18:05:06 +01:00
|
|
|
|
|
|
|
// Need jQuery? Install it with "yarn add jquery", then uncomment to require it.
|
|
|
|
const $ = require('jquery');
|
|
|
|
|
2019-10-13 17:48:18 +02:00
|
|
|
//Only include javascript
|
2019-02-24 18:05:06 +01:00
|
|
|
import '@fortawesome/fontawesome-free/css/all.css'
|
|
|
|
|
2022-03-04 20:59:08 +01:00
|
|
|
require('bootstrap');
|
2022-03-05 23:09:55 +01:00
|
|
|
|
2022-03-07 00:40:36 +01:00
|
|
|
import "./error_handler";
|
2022-07-29 22:52:58 +02:00
|
|
|
import "./tab_remember";
|
2022-03-05 23:28:29 +01:00
|
|
|
import "./register_events";
|
2022-07-24 21:12:11 +02:00
|
|
|
import "./tristate_checkboxes";
|
2022-03-05 23:09:55 +01:00
|
|
|
|
2022-03-06 23:27:20 +01:00
|
|
|
//Define jquery globally
|
2022-08-03 22:54:46 +02:00
|
|
|
window.$ = window.jQuery = require("jquery")
|