Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

31 line
905B

  1. $(document).ready(function() {
  2. initReminder() ;
  3. }) ;
  4. function initReminder() {
  5. var selectorModal = '#modal-reminder' ;
  6. $('.btn-reminder').click(function() {
  7. $.post($(this).attr('href'), {
  8. crudAction: $(this).data('crud-action'),
  9. crudControllerFqcn: $(this).data('crud-controller-fqcn'),
  10. entityId: $(this).data('entity-id'),
  11. id: $(this).data('id'),
  12. }, function(html) {
  13. $(selectorModal).remove() ;
  14. $('body').append(html) ;
  15. $(selectorModal).modal('show') ;
  16. });
  17. return false ;
  18. }) ;
  19. $('.checkbox-reminder').click(function() {
  20. $.post($(this).data('url'), {
  21. id: $(this).data('id'),
  22. done: $(this).is(':checked')
  23. }, function(data) {
  24. SovNotification.add('success', 'Pense-bête mis à jour');
  25. }, 'json');
  26. }) ;
  27. }