From e28458869fea218931f262dcb0e6ac6856384b95 Mon Sep 17 00:00:00 2001 From: macdonst Date: Fri, 29 Jul 2011 11:54:48 +0800 Subject: [PATCH] Issue #185: Fix mis-spelling in file.js --- framework/assets/js/file.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/assets/js/file.js b/framework/assets/js/file.js index 6332bc1f..10d47c38 100755 --- a/framework/assets/js/file.js +++ b/framework/assets/js/file.js @@ -172,7 +172,7 @@ FileReader.prototype.abort = function() { } // If abort callback if (typeof this.onabort === "function") { - this.oneabort({"type":"abort", "target":this}); + this.onabort({"type":"abort", "target":this}); } // If load end callback if (typeof this.onloadend === "function") { @@ -431,7 +431,7 @@ FileWriter.prototype.abort = function() { } // If abort callback if (typeof this.onabort === "function") { - this.oneabort({"type":"abort", "target":this}); + this.onabort({"type":"abort", "target":this}); } this.readyState = FileWriter.DONE;