Fix space at bottom of app in Edge

main
Isaiah Odhner 2016-05-04 18:32:26 -04:00
parent 08f15a0e5f
commit bce5b5984d
2 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ function $ColorBox(){
var $c = $Component("Colors", "wide", $cb);
var $input = $("<input type=color>").appendTo($app).css({width: 0, height: 0, padding: 0, border: 0, flex: "0 0 0"});
var $input = $("<input type=color>").appendTo($app).css({width: 0, height: 0, padding: 0, border: 0, position: "absolute"});
$c.edit_last_color = function(){
// Edit the last color cell that's been selected as the foreground color.

View File

@ -73,7 +73,7 @@ var $status_size = $(E("div")).addClass("jspaint-status-coordinates").appendTo($
$status_text.text("For Help, click Help Topics on the Help Menu.");
})();
var $file_input = $("<input type=file>").appendTo($app).css({width: 0, height: 0, padding: 0, border: 0, flex: "0 0 0"});
var $file_input = $("<input type=file>").appendTo($app).css({width: 0, height: 0, padding: 0, border: 0, position: "absolute"});
var $toolbox = $ToolBox();
var $colorbox = $ColorBox();