app.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import $ from 'jquery';
  2. global.$ = $;
  3. import '../css/app.scss';
  4. import 'bootstrap';
  5. import 'font-awesome/css/font-awesome.css';
  6. import 'jquery-ui/themes/base/all.css';
  7. import 'jquery-ui/ui/widgets/autocomplete';
  8. import 'bootstrap-notify/bootstrap-notify';
  9. import 'animate.css/animate.css';
  10. import 'bootstrap-star-rating';
  11. import 'bootstrap-star-rating/css/star-rating.css';
  12. import 'bootstrap-star-rating/themes/krajee-fa/theme';
  13. import 'bootstrap-star-rating/themes/krajee-fa/theme.css';
  14. import './suivifilms2';
  15. import './addCollectionWidget';
  16. import './filtre';
  17. $(document).ready(function() {
  18. $(function() {
  19. $('[data-toggle="tooltip"]').tooltip();
  20. $('.add-another-collection-widget').addCollection();
  21. $('[data-fonction="switch"]').switchEtat();
  22. $('[data-toggle="star-filter"]').filtreParNote();
  23. $('[data-toggle="notify"]').each(function() {
  24. $.notify({
  25. message: $(this).data('message')
  26. },{
  27. type: $(this).data('type'),
  28. animate: {
  29. enter: 'animated fadeInRight',
  30. exit: 'animated fadeOutRight'
  31. },
  32. delay: 4000,
  33. offset: {
  34. x: 15,
  35. y: 70
  36. }
  37. })
  38. })
  39. })
  40. })