Ox.FileInput: add public clear method

This commit is contained in:
rlx 2014-09-18 14:27:02 +02:00
parent 619aa33d8d
commit dbd0db9b3f

View file

@ -324,5 +324,11 @@ Ox.FileInput = function(options, self) {
.appendTo(self.$bar); .appendTo(self.$bar);
} }
that.clear = function() {
clearFile();
return that; return that;
}; };
return that;
};