No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

21 líneas
578B

  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. }, function(html) {
  12. $(selectorModal).remove() ;
  13. $('body').append(html) ;
  14. $(selectorModal).modal('show') ;
  15. });
  16. return false ;
  17. }) ;
  18. }