You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
861B

  1. // JQuery
  2. import 'jquery';
  3. global.$ = global.jQuery = $;
  4. // Adminlte
  5. import 'adminlte-js' ;
  6. // Bootstrap
  7. import 'bootstrap/dist/js/bootstrap.min.js';
  8. // Bootstrap - autocomplete
  9. import 'bootstrap-autocomplete';
  10. // Select2
  11. import 'select2/js/select2.min.js';
  12. import 'select2/js/i18n/fr.js';
  13. import 'select2/css/select2.min.css';
  14. import 'select2-bootstrap4-theme';
  15. // Toastr
  16. import toastr from 'toastr/toastr.js' ;
  17. import 'toastr/toastr.scss' ;
  18. global.toastr = toastr ;
  19. // DaterangePicker
  20. import 'moment' ;
  21. import 'daterangepicker/daterangepicker.js' ;
  22. import 'daterangepicker/daterangepicker.css' ;
  23. // Tools
  24. import { Tools } from '../../../tools/tools.js';
  25. global.Tools = Tools;
  26. import { Notification } from './js/notification.js';
  27. global.Notification = Notification;
  28. Notification.init() ;
  29. // Common
  30. import './common.scss';
  31. import './common.js' ;