client/annotviz/app/js/annotsroll.js
changeset 117 c0034b35c44e
parent 112 3e075a48e19e
child 120 89544c28a364
equal deleted inserted replaced
114:9fcb0e0991ed 117:c0034b35c44e
   130 	        textHeight += (catLabel.height - 23 + 2);
   130 	        textHeight += (catLabel.height - 23 + 2);
   131 	
   131 	
   132 	        if(text) {
   132 	        if(text) {
   133 	            var catText = new PIXI.Text(text, annotStyles.text);
   133 	            var catText = new PIXI.Text(text, annotStyles.text);
   134 	            catText.x = x + 20;
   134 	            catText.x = x + 20;
   135 	            catText.y = y;
   135 	            catText.y = y + textHeight;
   136 	            this.container.addChild(catText);
   136 	            this.container.addChild(catText);
   137 	            textHeight += (catText.height + 2);
   137 	            textHeight += (catText.height + 2);
   138 	        }
   138 	        }
   139 	
   139 	
   140 	        var catUser = new PIXI.Text(user, annotStyles.user);
   140 	        var catUser = new PIXI.Text(user, annotStyles.user);