Lines Matching refs:hint

11590 			var hint = document.createElement('div');
11591 hint.className = 'geHint';
11592 hint.style.whiteSpace = 'nowrap';
11593 hint.style.position = 'absolute';
11595 return hint;
11629 if (this.hint == null)
11631 this.hint = createHint();
11632 this.graph.container.appendChild(this.hint);
11641 this.hint.innerHTML = formatHintText(x, unit) + ', ' + formatHintText(y, unit);
11643 this.hint.style.left = (this.pBounds.x + this.currentDx +
11644 Math.round((this.pBounds.width - this.hint.clientWidth) / 2)) + 'px';
11645 this.hint.style.top = (this.pBounds.y + this.currentDy +
11655 if (this.hint != null)
11657 this.hint.parentNode.removeChild(this.hint);
11658 this.hint = null;
12275 if (this.hint == null)
12277 this.hint = createHint();
12278 this.state.view.graph.container.appendChild(this.hint);
12283 this.hint.innerHTML = this.currentAlpha + '°';
12289 this.hint.innerHTML = formatHintText(this.roundLength(this.bounds.width / s), unit) + ' x ' +
12301 this.hint.style.left = bb.x + Math.round((bb.width - this.hint.clientWidth) / 2) + 'px';
12302 this.hint.style.top = (bb.y + bb.height + Editor.hintOffset) + 'px';
12360 if (this.hint == null)
12362 this.hint = createHint();
12363 this.state.view.graph.container.appendChild(this.hint);
12372 this.hint.innerHTML = formatHintText(x, unit) + ', ' + formatHintText(y, unit);
12373 this.hint.style.visibility = 'visible';
12381 this.hint.innerHTML = '[' + Math.round(pt.x * 100) + '%, '+ Math.round(pt.y * 100) + '%]';
12385 this.hint.style.visibility = 'hidden';
12389 this.hint.style.left = Math.round(me.getGraphX() - this.hint.clientWidth / 2) + 'px';
12390 this.hint.style.top = (Math.max(me.getGraphY(), point.y) + Editor.hintOffset) + 'px';