Skip to content

Commit

Permalink
Fix empty screen on Dev Tools on start (#735)
Browse files Browse the repository at this point in the history
  • Loading branch information
pablotr9 authored and Jesús Ángel committed Jun 5, 2019
1 parent 95d0343 commit afbb5bf
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,12 @@ define([
'width: calc(70% - 7px); !important'
)
}

setTimeout(x => {
this.apiInputBox.refresh()
this.apiOutputBox.refresh()
},1);

}

/**
Expand Down Expand Up @@ -549,7 +555,7 @@ define([
})
const currentPlayButton = $('#play_button').offset()
$('#play_button').offset({
top: cords.top + 10,
top: cords.top + 35,
left: currentPlayButton.left
})
}
Expand Down

0 comments on commit afbb5bf

Please sign in to comment.