diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2016-03-24 10:22:34 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2016-03-24 10:22:34 +0100 |
commit | af129adce0014fc7c71e335804fef4148a057290 (patch) | |
tree | 738ef94d671389078924576c589a81e90aaa51b8 /framework | |
parent | 506aa35bd753d3560df8031cff136a1a90d4db76 (diff) |
Fix #540
Diffstat (limited to 'framework')
-rwxr-xr-x | framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js b/framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js index 15998278..04c02ac9 100755 --- a/framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js +++ b/framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js @@ -20,6 +20,8 @@ Prado.WebUI.TActiveFileUpload = jQuery.klass(Prado.WebUI.Control, }, fileChanged : function(){ + // ie11 fix + if(this.input.value=='') return; // show the upload indicator, and hide the complete and error indicators (if they areSn't already). this.flag.value = '1'; this.complete.style.display = 'none'; |