uploader 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.1
1
+ 1.0.2
@@ -31,10 +31,10 @@ module UploaderHelper
31
31
  # http://www.uploadify.com/documentation/
32
32
  def uploadify_form(parent, display_upload_indicators = true, container_prefix = '', options = {})
33
33
  container_prefix = 'uploadify' if container_prefix.blank?
34
-
34
+ format = 'js'
35
35
  uploadify_options = {
36
36
  :uploader => '/swf/uploadify.swf',
37
- :script => uploads_url,
37
+ :script => multiupload_uploads_path({:format => format}),
38
38
  :cancelImg => '/images/uploadify/cancel.png',
39
39
  :fileDesc => "All Files",
40
40
  :fileExt => "*.*",
data/uploader.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{uploader}
8
- s.version = "1.0.1"
8
+ s.version = "1.0.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Justin Ball", "Joel Duffin", "David South"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uploader
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 1
10
- version: 1.0.1
9
+ - 2
10
+ version: 1.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Justin Ball