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