kopia lustrzana https://github.com/backface/turtlestitch
Merge pull request #1613 from brollb/1612-canceling-file-select-breaks-logo-menu
Added 'display:none;' to input. Fixes #1612pull/29/head
commit
32462e19b7
1
gui.js
1
gui.js
|
@ -2805,6 +2805,7 @@ IDE_Morph.prototype.projectMenu = function () {
|
|||
inp.style.left = "0px";
|
||||
inp.style.width = "0px";
|
||||
inp.style.height = "0px";
|
||||
inp.style.display = "none";
|
||||
inp.addEventListener(
|
||||
"change",
|
||||
function () {
|
||||
|
|
|
@ -8402,6 +8402,7 @@ WatcherMorph.prototype.userMenu = function () {
|
|||
inp.style.left = "0px";
|
||||
inp.style.width = "0px";
|
||||
inp.style.height = "0px";
|
||||
inp.style.display = "none";
|
||||
inp.addEventListener(
|
||||
"change",
|
||||
function () {
|
||||
|
|
Ładowanie…
Reference in New Issue