forked from github/cordova-android
Issue #185: Fix mis-spelling in file.js
This commit is contained in:
parent
39d6952494
commit
e28458869f
@ -172,7 +172,7 @@ FileReader.prototype.abort = function() {
|
|||||||
}
|
}
|
||||||
// If abort callback
|
// If abort callback
|
||||||
if (typeof this.onabort === "function") {
|
if (typeof this.onabort === "function") {
|
||||||
this.oneabort({"type":"abort", "target":this});
|
this.onabort({"type":"abort", "target":this});
|
||||||
}
|
}
|
||||||
// If load end callback
|
// If load end callback
|
||||||
if (typeof this.onloadend === "function") {
|
if (typeof this.onloadend === "function") {
|
||||||
@ -431,7 +431,7 @@ FileWriter.prototype.abort = function() {
|
|||||||
}
|
}
|
||||||
// If abort callback
|
// If abort callback
|
||||||
if (typeof this.onabort === "function") {
|
if (typeof this.onabort === "function") {
|
||||||
this.oneabort({"type":"abort", "target":this});
|
this.onabort({"type":"abort", "target":this});
|
||||||
}
|
}
|
||||||
|
|
||||||
this.readyState = FileWriter.DONE;
|
this.readyState = FileWriter.DONE;
|
||||||
|
Loading…
Reference in New Issue
Block a user