Skip to content

Commit e400d6c

Browse files
committed
rakaloof fix applied for IE6/compatibility mode.
1 parent be3748f commit e400d6c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jquery.FileReader.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
filereader : 'files/filereader.swf', // The path to the filereader swf file
1717
expressInstall : null, // The path to the express install swf file
1818
debugMode : false,
19-
callback : false, // Callback function when Filereader is ready
19+
callback : false // Callback function when Filereader is ready
2020
}, options);
2121

2222
var self = this;
@@ -237,7 +237,7 @@
237237

238238
// Registers FileReader instance for flash callbacks
239239
_register: function(file) {
240-
this._id = file.input + '.' + file.name
240+
this._id = file.input + '.' + file.name;
241241
FileAPIProxy.readers[this._id] = this;
242242
},
243243
_start: function(file) {
@@ -297,7 +297,7 @@
297297
stopImmediatePropagation: function (){
298298
},
299299
preventDefault: function (){
300-
},
300+
}
301301
};
302302

303303
/**

0 commit comments

Comments
 (0)