edit_price.js.erb 325 B

123456789
  1. $('#dialog h3.modal-title').html("<i class='fa fa-money'></i> Cambiar precio de venta");
  2. $("#dialog .modal-body-content").html("<%= escape_javascript(render 'edit_price') %>");
  3. $("#dialog").modal("show");
  4. // Set focus to the first element
  5. $('#dialog').on('shown.bs.modal', function () {
  6. $('.first_input').focus();
  7. });