diff --git a/source/Ox.UI/js/Form/FileInput.js b/source/Ox.UI/js/Form/FileInput.js index a7e01681..72ad3265 100644 --- a/source/Ox.UI/js/Form/FileInput.js +++ b/source/Ox.UI/js/Form/FileInput.js @@ -324,5 +324,11 @@ Ox.FileInput = function(options, self) { .appendTo(self.$bar); } + that.clear = function() { + clearFile(); + return that; + }; + return that; + };