Skip to content

Commit 7135911

Browse files
committed
update a ui
1 parent c422b83 commit 7135911

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

example/js/ui.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,8 @@ FileProgress.prototype.setComplete = function(up, info) {
283283
if (height > $(window).height() - height_space) {
284284
height = parseInt($(window).height() - height_space, 10);
285285
} else {
286-
height = parseInt(height, 10);
286+
height = parseInt(height, 10) || 500;
287+
//set a default height 500 for ie9-
287288
}
288289
var fopArr = [];
289290
fopArr.push({

0 commit comments

Comments
 (0)