socialforge/app/views/avatar/upload.js.erb

8 lines
386 B
Plaintext
Raw Normal View History

2016-08-29 16:19:06 +08:00
<% if @is_direct == '1' && (@source_type=='User'|| @source_type == 'Course' || @source_type == 'Project' || @source_type == 'Organization') %>
2015-07-09 15:27:49 +08:00
var imgSpan = $("img[nhname='avatar_image']");
imgSpan.attr({"src":'<%= "#{@urlfile.to_s}?#{Time.now.to_i}" %>'});
<% else %>
var imgSpan = jQuery('#avatar_image');
2013-08-01 10:33:49 +08:00
2015-05-08 14:28:17 +08:00
imgSpan.attr({"src":'<%= "#{@urlfile.to_s}?#{Time.now.to_i}" %>'});
2015-07-09 15:27:49 +08:00
<% end %>