Skip to content

Commit

Permalink
ENYO-1636: use enyo.forEach instead of native forEach for IE8 compati…
Browse files Browse the repository at this point in the history
…bility

Enyo-DCO-1.1-Signed-Off-By: Ben Combee (ben.combee@palm.com)
  • Loading branch information
Ben Combee committed Dec 13, 2012
1 parent 8cf01dd commit 416eedc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ajax/formdata.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ _enyo.FormData_ is inspired by
FormData.prototype.toString = function() {
var boundary = this.boundary;
var body = "";
this._fields.forEach(function(field) {
enyo.forEach(this._fields, function(field) {
body += "--" + boundary + "\r\n";
if (field[2] || field[1].name) {
// file upload
Expand Down

0 comments on commit 416eedc

Please sign in to comment.