説明なし

scripts.html 577B

12345678910111213141516171819202122232425262728293031
  1. <script>
  2. function notify_error(message) {
  3. $.notify({
  4. icon: 'flaticon-alarm-1',
  5. title: 'Error',
  6. message: message
  7. }, {
  8. type: 'danger',
  9. placement: {
  10. from: 'top',
  11. align: 'right'
  12. },
  13. time: 3000,
  14. });
  15. }
  16. function notify_success(message) {
  17. $.notify({
  18. icon: 'flaticon-alarm-1',
  19. title: 'Done',
  20. message: message
  21. }, {
  22. type: 'success',
  23. placement: {
  24. from: 'top',
  25. align: 'right'
  26. },
  27. time: 3000,
  28. });
  29. }
  30. </script>