update.js.erb 358 B

1234567891011
  1. $("#errors").html("");
  2. <% if @unit.errors.any? %>
  3. $('#errors').removeClass('hidden');
  4. <% @unit.errors.values.each do |message| %>
  5. $("#errors").append($("<li />").html("<%= message.first.to_s %>"));
  6. <% end %>
  7. <% else %>
  8. $('#dialog').modal('toggle');
  9. window.location = "<%= units_path %>";
  10. $("#notice").html("<%= flash[:notice] %>");
  11. <% end %>