From 51e346f760dc93d96d663eefb63ea4d94fa0e404 Mon Sep 17 00:00:00 2001 From: nuintun Date: Fri, 4 Dec 2015 12:23:58 +0800 Subject: [PATCH] update files --- static/js/terminal/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/js/terminal/index.js b/static/js/terminal/index.js index 580c523..fa47856 100644 --- a/static/js/terminal/index.js +++ b/static/js/terminal/index.js @@ -743,15 +743,15 @@ TChar.prototype.toString = function (){ return this.value; }; -// rows unique id -var _uniqueId = 0; +// unique row id +var _uniqueRowId = 0; /** * Row * @constructor */ function Row(){ - this.id = _uniqueId++ | 0; + this.id = _uniqueRowId++ | 0; this.version = 0; this.cells = []; }