Bug 1272460 - Make the new console take the full width of the window. r=bgrins

MozReview-Commit-ID: FpdVHkId0D8
This commit is contained in:
Nicolas Chevobbe 2016-05-26 10:17:11 -07:00
Родитель 9b8558be96
Коммит e07987b4c9
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -637,7 +637,12 @@ WebConsoleFrame.prototype = {
* using -moz-box-flex and 100% width. See Bug 1237368.
*/
resize: function () {
this.outputNode.style.width = this.outputWrapper.clientWidth + "px";
if (this.NEW_CONSOLE_OUTPUT_ENABLED) {
this.experimentalOutputNode.style.width =
this.outputWrapper.clientWidth + "px";
} else {
this.outputNode.style.width = this.outputWrapper.clientWidth + "px";
}
},
/**