cancel_reserved_sale.js.erb 270 B

123456789
  1. $('#dialog h3.modal-title').html("Cancelar apartado");
  2. $(".modal-body").html("<%= j render('cancel_reserved_sale') %>");
  3. $("#dialog").modal("show");
  4. // Set focus to the first element
  5. $('#dialog').on('shown.bs.modal', function () {
  6. $('.first_input').focus();
  7. });