Lines Matching refs:orientation

25827 	  var orientation = this._getOrientationDetails(type),
25828 axis = orientation.axis,
25829 dimension = orientation.dimension,
26022 var orientation = getOrientation(target, bounds, PLACEMENT_DETECTION_PAD);
26024 return orientation === 'intersect';
26408 orientation = 'left';
26411 orientation = getOrientation(source, source.host, -25);
26413 if (orientation.indexOf('top') !== -1) {
26420 y: sourceMid.y + getVerticalDistance(orientation, minDistance)
26434 function getVerticalDistance(orientation, minDistance) { argument
26435 if (orientation.indexOf('top') != -1) {
26437 } else if (orientation.indexOf('bottom') != -1) {
36599 DistributeElements$1.prototype.trigger = function(elements, orientation) { argument
36609 this._setOrientation(orientation);
36707 var orientation = AXIS_DIMENSIONS[direction];
36709 this._axis = orientation[0];
36710 this._dimension = orientation[1];
39737 function adjustLabelPosition(element, orientation) { argument
39752 switch (orientation) {
39907 function isAligned(orientation) { argument
39908 return ALIGNMENTS.indexOf(orientation) !== -1;
44349 var orientation = getOrientation(position, targetBounds, -15);
44351 if (orientation !== 'intersect') {
44352 return orientation;
47715 var orientation = { class in AnonymousFunctionf8d14cd152400
47727 attr(pathX, 'd', orientation.x);
47734 attr(pathY, 'd', orientation.y);
47869 var orientation = { class in AnonymousFunctionf8d14cd152700
47874 attr(line, { d: orientation[ axis ] });
52683 function needsTurn(orientation, startDirection) { argument
52691 }[startDirection].test(orientation);
52706 var orientation = getOrientation(b, a, POINT_ORIENTATION_PADDING);
52715 var layoutStraight = canLayoutStraight(startDirection, orientation),
52726 layoutTurn = needsTurn(orientation, startDirection);
52949 var orientation = getOrientation(source, target, threshold);
52951 var directions = getDirections(orientation, preferredLayout);
52961 …r startDocking = getDockingPoint(start, source, directionSplit[0], invertOrientation(orientation)),
52962 endDocking = getDockingPoint(end, target, directionSplit[1], orientation);
53061 orientation;
53063 orientation = getOrientation(source, target);
53067 if (!/^(top|bottom|left|right)$/.test(orientation)) {
53071 if (/top|bottom/.test(orientation)) {
53075 if (/left|right/.test(orientation)) {
53282 function getDirections(orientation, defaultLayout) { argument
53289 switch (orientation) {
53318 function invertOrientation(orientation) { argument
53328 }[orientation];
53585 function isAnyOrientation(orientation, orientations) { argument
53586 return orientations.indexOf(orientation) !== -1;
53589 function getHorizontalOrientation(orientation) { argument
53590 var matches = /right|left/.exec(orientation);
53595 function getVerticalOrientation(orientation) { argument
53596 var matches = /top|bottom/.exec(orientation);
53621 function isHorizontalOrientation(orientation) { argument
53622 return orientation === 'right' || orientation === 'left';
53628 var orientation = waypoints && waypoints.length && getOrientation(waypoints[0], source);
53630 if (orientation === 'top') {
53632 } else if (orientation === 'right') {
53634 } else if (orientation === 'left') {
53671 var orientation = attachedToSide ? attachOrientation : getVerticalOrientation(attachOrientation),
53672 sourceLayout = orientationDirectionMapping[ orientation ],
55848 orientation = getOrientation(sourceMid, target, -10),
55851 if (/top|bottom/.test(orientation)) {
55855 if (/left|right/.test(orientation)) {
56724 Snapping.prototype._createLine = function(orientation) { argument
56741 if (orientation === 'horizontal') {
56764 Snapping.prototype.showSnapLine = function(orientation, position) { argument
56766 var line = this.getSnapLine(orientation);
56775 Snapping.prototype.getSnapLine = function(orientation) { argument
56780 return this._snapLines[orientation];