app.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.js';
  15. $(document).ready(function() {
  16. $(function() {
  17. $('[data-toggle="tooltip"]').tooltip();
  18. $('[data-fonction="follow"]').follow();
  19. $('[data-fonction="seen"]').seen();
  20. $('[data-toggle="notify"]').each(function() {
  21. $.notify({
  22. message: $(this).data('message')
  23. },{
  24. type: $(this).data('type'),
  25. animate: {
  26. enter: 'animated fadeInRight',
  27. exit: 'animated fadeOutRight'
  28. },
  29. delay: 4000,
  30. offset: {
  31. x: 15,
  32. y: 70
  33. }
  34. })
  35. })
  36. })
  37. })