remotipart 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f9e9bc4a555dcec65d5919d97b7f56952ef8b8aa
4
- data.tar.gz: e84ba4304c5491427d6eff3d29aa86cb98ecf3f5
3
+ metadata.gz: ec23f3df5458657f694d92ab33cd1222754fdce5
4
+ data.tar.gz: 78bc0803e6c169d96490cd547e8dc7a1250bc5ae
5
5
  SHA512:
6
- metadata.gz: 441d87a73a0eee7e4304fd7dabebaf86ca189eb2ac9c274ee7ad0f69828963851c86c63387d869240255f74be6b582d3c46f0555f2aa08f45aab2a8c58eefb3e
7
- data.tar.gz: 29deeb18c6fb76f3ef0a31f5e777a3d4ddd34124c01ad0b11cb53fea34655d238ceeb8e49c69369823318c4273d8cfd3dc36b82794cbc83382a09aa54f374609
6
+ metadata.gz: 04e4a54250dcb7077680533f570cce060a86858cc15c7912ce522f3ce41a52eeee02a7a4f89cd6e50ad5970bd610f70cc9a7ef84fc75e259b5257072d5ee959a
7
+ data.tar.gz: a07237bc926326c6033e6cb0ffd4f0ad634f21fd65eda3eb77cc578f00cc452fd4731df4f65ca2062f49364e793bde01208f69eca23eaba95302c7111615ee12
data/History.rdoc CHANGED
@@ -1,5 +1,9 @@
1
1
  = History
2
2
 
3
+ === 1.3.1 / 2016-10-06
4
+
5
+ * Fixed remote form submit not working with Firefox 49.
6
+
3
7
  === 1.3.0 / 2016-09-14
4
8
 
5
9
  * Added Rails 5 support.
@@ -1,6 +1,6 @@
1
1
  module Remotipart
2
2
  module Rails
3
- VERSION = "1.3.0"
3
+ VERSION = "1.3.1"
4
4
  IFRAMETRANSPORT_VERSION = "02.06.2013"
5
5
  end
6
6
  end
data/remotipart.gemspec CHANGED
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: remotipart 1.3.0 ruby lib
5
+ # stub: remotipart 1.3.1 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "remotipart"
9
- s.version = "1.3.0"
9
+ s.version = "1.3.1"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["Greg Leppert", "Steve Schwartz"]
14
- s.date = "2016-09-14"
14
+ s.date = "2016-10-06"
15
15
  s.description = "Remotipart is a Ruby on Rails gem enabling remote multipart forms (AJAX style file uploads) with jquery-rails.\n This gem augments the native Rails 3 jQuery-UJS remote form function enabling asynchronous file uploads with little to no modification to your application.\n "
16
16
  s.email = ["greg@formasfunction.com", "steve@alfajango.com"]
17
17
  s.extra_rdoc_files = [
@@ -121,7 +121,7 @@
121
121
  });
122
122
  form.remove();
123
123
  iframe.bind("load", function() { iframe.remove(); });
124
- iframe.attr("src", "javascript:false;");
124
+ iframe.attr("src", "about:blank");
125
125
  }
126
126
 
127
127
  // Remove "iframe" from the data types list so that further processing is
@@ -178,7 +178,7 @@
178
178
  // The `send` function is called by jQuery when the request should be
179
179
  // sent.
180
180
  send: function(headers, completeCallback) {
181
- iframe = $("<iframe src='javascript:false;' name='" + name +
181
+ iframe = $("<iframe src='about:blank' name='" + name +
182
182
  "' id='" + name + "' style='display:none'></iframe>");
183
183
 
184
184
  // The first load event gets fired after the iframe has been injected
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: remotipart
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Leppert
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-09-14 00:00:00.000000000 Z
12
+ date: 2016-10-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake