Sha256: 3a7b197879f639d7409cf76e662684c21771e949f62ba6ee4f321b808fcee53d

Contents?: true

Size: 961 Bytes

Versions: 8

Compression:

Stored size: 961 Bytes

Contents

<h1>Uploadify</h1>

<p>
  <a href="/">SWFUpload</a> | <a href="/default/uploadify">uploadify</a>
</p>

<p>Upload One restricted to 10 MB:
  <%= uploadify_form(@user, { :display_upload_indicators => true, :container_prefix => '' }, { :sizeLimit => 1310720 }) %>
</p>

<p>Upload restricted to images:
  <%= uploadify_form(@user, { :display_upload_indicators => false, :container_prefix => 'a_container_with_a_long_name' }, { :fileExt => '*.jpg;*.gif;*.png', :fileDesc => 'Images' }) %>
</p>

<p>Upload With Custom Background Button and rollover:
  <%= uploadify_form(@user, { :display_upload_indicators => false, :container_prefix => 'background' }, { :buttonImg => '/images/swfupload/SWFUploadButton.png', :width => 61, :height => 22, :rollover => true }) %>
</p>

<h2>Uploaded files:</h2>
<div id="results"></div>
  
<script type='text/javascript'> 
  function upload_completed_callback(data){
    jQuery('#results').append(data);
    return true;
  }
</script>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
uploader-3.1.4 test/rails_test/app/views/default/uploadify.html.erb
uploader-3.1.3 test/rails_test/app/views/default/uploadify.html.erb
uploader-3.1.2 test/rails_test/app/views/default/uploadify.html.erb
uploader-3.1.1 test/rails_test/app/views/default/uploadify.html.erb
uploader-3.1.0 test/rails_test/app/views/default/uploadify.html.erb
uploader-3.0.2 test/rails_test/app/views/default/uploadify.html.erb
uploader-3.0.1 test/rails_test/app/views/default/uploadify.html.erb
uploader-3.0.0 test/rails_test/app/views/default/uploadify.html.erb