fit() uses offset height and width now

This commit is contained in:
paris
2014-04-10 18:36:37 +00:00
parent 0b603952c3
commit 6e6b5dad8c
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
{
"name": "xterm.js",
"version": "0.9",
"version": "0.9.1",
"ignore": ["demo", "docs", "test", ".gitignore"]
}
+2 -2
View File
@@ -2537,7 +2537,7 @@ Terminal.prototype.resize = function(x, y) {
Terminal.prototype.fit = function () {
var container = this.element.parentElement,
subjectRow = this.rowContainer.firstElementChild,
rows = parseInt(container.scrollHeight / subjectRow.offsetHeight),
rows = parseInt(container.offsetHeight / subjectRow.offsetHeight),
characterWidth,
cols;
@@ -2545,7 +2545,7 @@ Terminal.prototype.fit = function () {
characterWidth = parseInt(subjectRow.offsetWidth / this.cols);
subjectRow.style.display = '';
cols = parseInt(container.scrollWidth / characterWidth);
cols = parseInt(container.offsetWidth / characterWidth);
this.resize(cols, rows);
}