We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c422b83 commit 7135911Copy full SHA for 7135911
example/js/ui.js
@@ -283,7 +283,8 @@ FileProgress.prototype.setComplete = function(up, info) {
283
if (height > $(window).height() - height_space) {
284
height = parseInt($(window).height() - height_space, 10);
285
} else {
286
- height = parseInt(height, 10);
+ height = parseInt(height, 10) || 500;
287
+ //set a default height 500 for ie9-
288
}
289
var fopArr = [];
290
fopArr.push({
0 commit comments