Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Merge pull request #510 from arv/form-data
Browse files Browse the repository at this point in the history
Guard FormData for IE9
  • Loading branch information
arv committed Sep 17, 2014
2 parents b5abcf1 + 3f6e421 commit b73456a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/wrappers/FormData.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
var unwrap = scope.unwrap;

var OriginalFormData = window.FormData;
if (!OriginalFormData) return;

function FormData(formElement) {
var impl;
Expand Down

0 comments on commit b73456a

Please sign in to comment.