update files

This commit is contained in:
nuintun 2015-12-04 12:23:58 +08:00
parent 5c679826df
commit 51e346f760

View File

@ -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 = [];
}