Lines Matching refs:position

453           position: 'absolute',
522 var position = 'absolute';
530 position = 'fixed';
535 this.$el.css({ position: position }); // Update positioning
726 var threshold = this._getActiveElement().position().top - this.$el.innerHeight();
728 if ($(this).position().top + $(this).outerHeight() > threshold) {
740 var threshold = this._getActiveElement().position().top + this.$el.innerHeight();
742 if ($(this).position().top > threshold) {
763 var itemTop = $activeEl.position().top;
831 if ((this.$el.position().top + height) > windowScrollBottom) {
856 _applyPlacement: function (position) { argument
860 position = { class in AnonymousFunction36fd7cbb3f00
862 bottom: this.$el.parent().height() - position.top + position.lineHeight,
863 left: position.left
866 position.bottom = 'auto';
867 delete position.lineHeight;
870 position.left = 0;
872 position.right = 0;
873 position.left = 'auto';
875 return position;
1016 var position = this._getCaretRelativePosition();
1028 position.top += offset.top;
1029 position.left += offset.left;
1030 return position;
1156 position: 'absolute',
1292 var position = $node.offset();
1293 position.left -= this.$el.offset().left;
1294 position.top += $node.height() - this.$el.offset().top;
1295 position.lineHeight = $node.height();
1301 position.top += iframePosition.top;
1302 position.left += iframePosition.left;
1305 position.top -= $(this.completer.$iframe[0].contentWindow.document).scrollTop();
1309 return position;
1436 function getCaretCoordinates(element, position, options) { argument
1461 style.position = 'absolute'; // required to return coordinates properly
1478 div.textContent = element.value.substring(0, position);
1489 …span.textContent = element.value.substring(position) || '.'; // || because a completely empty fau…