Skip to content

Commit fa6a213

Browse files
committed
jquery-form#390; fix for ie8
1 parent 6c72f5c commit fa6a213

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-form",
3-
"version": "3.46.0",
3+
"version": "3.49.0",
44
"main": "jquery.form.js",
55
"author": "M. Alsup",
66
"dependencies": {

form.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"upload",
88
"ajax"
99
],
10-
"version": "3.46.0",
10+
"version": "3.49.0",
1111
"author": {
1212
"name": "M. Alsup",
1313
"url": "http://jquery.malsup.com"

jquery.form.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* jQuery Form Plugin
3-
* version: 3.48.0-2013.12.28
3+
* version: 3.49.0-2014.02.05
44
* Requires jQuery v1.5 or later
55
* Copyright (c) 2013 M. Alsup
66
* Examples and documentation at: http://malsup.com/jquery/form/
@@ -950,7 +950,7 @@ $.fn.formToArray = function(semantic, elements) {
950950
var els = semantic ? form.getElementsByTagName('*') : form.elements;
951951
var els2;
952952

953-
if ( els ) {
953+
if (els && !/MSIE 8/.test(navigator.userAgent)) { // #390
954954
els = $(els).get(); // convert to standard array
955955
}
956956

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"upload",
88
"ajax"
99
],
10-
"version": "3.48.0",
10+
"version": "3.49.0",
1111
"author": {
1212
"name": "M. Alsup",
1313
"url": "http://jquery.malsup.com"

0 commit comments

Comments
 (0)