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.

38 lines
769B

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