mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
git-svn-id: http://svn.redmine.org/redmine/trunk@14493 e93f8b46-1217-0410-a6f0-8f06a7374b81
12 lines
339 B
Plaintext
12 lines
339 B
Plaintext
$('#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 %>
|