You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

run.js.erb 339B

1234567891011
  1. $('#import-progress').progressbar({value: <%= @current.to_i %>});
  2. $('#progress-label').text("<%= @current.to_i %> / <%= @import.total_items.to_i %>");
  3. <% if @import.finished? %>
  4. window.location.href='<%= import_path(@import) %>';
  5. <% else %>
  6. $.ajax({
  7. url: '<%= import_run_path(@import, :format => 'js') %>',
  8. type: 'post'
  9. });
  10. <% end %>