You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
638 B
JavaScript
24 lines
638 B
JavaScript
require('core-js/stable');
|
|
window.$ = window.jQuery = require('jquery');
|
|
require('jquery-ui');
|
|
require('bootstrap');
|
|
window.moment = require('moment');
|
|
require('moment/locale/de');
|
|
require('eonasdan-bootstrap-datetimepicker');
|
|
require('chart.js');
|
|
require('./offcanvas');
|
|
require('./forms');
|
|
require('./sticky-headers');
|
|
require('./moment-countdown');
|
|
|
|
moment.updateLocale('en', {
|
|
week : {
|
|
dow : 1, // Monday is the first day of the week.
|
|
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
|
}
|
|
});
|
|
|
|
$.ajaxSetup({
|
|
headers: {'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')}
|
|
});
|