| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 | 
							- /*!
 -  * VERSION: 1.8.1
 -  * DATE: 2017-01-17
 -  * UPDATES AND DOCS AT: http://greensock.com
 -  *
 -  * @license Copyright (c) 2008-2017, GreenSock. All rights reserved.
 -  * This work is subject to the terms at http://greensock.com/standard-license or for
 -  * Club GreenSock members, the software agreement that was issued with your membership.
 -  * 
 -  * @author: Jack Doyle, jack@greensock.com
 -  **/
 - var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(global) !== "undefined") ? global : this || window; //helps ensure compatibility with AMD/RequireJS and CommonJS/Node
 - (_gsScope._gsQueue || (_gsScope._gsQueue = [])).push( function() {
 - 
 - 	"use strict";
 - 
 - 	var _doc = document.documentElement,
 - 		_window = _gsScope,
 - 		_max = function(element, axis) {
 - 			var dim = (axis === "x") ? "Width" : "Height",
 - 				scroll = "scroll" + dim,
 - 				client = "client" + dim,
 - 				body = document.body;
 - 			return (element === _window || element === _doc || element === body) ? Math.max(_doc[scroll], body[scroll]) - (_window["inner" + dim] || _doc[client] || body[client]) : element[scroll] - element["offset" + dim];
 - 		},
 - 		_unwrapElement = function(value) {
 - 			if (typeof(value) === "string") {
 - 				value = TweenLite.selector(value);
 - 			}
 - 			if (value.length && value !== _window && value[0] && value[0].style && !value.nodeType) {
 - 				value = value[0];
 - 			}
 - 			return (value === _window || (value.nodeType && value.style)) ? value : null;
 - 		},
 - 		_buildGetter = function(e, axis) { //pass in an element and an axis ("x" or "y") and it'll return a getter function for the scroll position of that element (like scrollTop or scrollLeft, although if the element is the window, it'll use the pageXOffset/pageYOffset or the documentElement's scrollTop/scrollLeft or document.body's. Basically this streamlines things and makes a very fast getter across browsers.
 - 			var p = "scroll" + ((axis === "x") ? "Left" : "Top");
 - 			if (e === _window) {
 - 				if (e.pageXOffset != null) {
 - 					p = "page" + axis.toUpperCase() + "Offset";
 - 				} else if (_doc[p] != null) {
 - 					e = _doc;
 - 				} else {
 - 					e = document.body;
 - 				}
 - 			}
 - 			return function() {
 - 				return e[p];
 - 			};
 - 		},
 - 		_getOffset = function(element, container) {
 - 			var rect = _unwrapElement(element).getBoundingClientRect(),
 - 				isRoot = (!container || container === _window || container === document.body),
 - 				cRect = (isRoot ? _doc : container).getBoundingClientRect(),
 - 				offsets = {x: rect.left - cRect.left, y: rect.top - cRect.top};
 - 			if (!isRoot && container) { //only add the current scroll position if it's not the window/body.
 - 				offsets.x += _buildGetter(container, "x")();
 - 				offsets.y += _buildGetter(container, "y")();
 - 			}
 - 			return offsets;
 - 		},
 - 		_parseVal = function(value, target, axis) {
 - 			var type = typeof(value);
 - 			if (type === "number" || (type === "string" && value.charAt(1) === "=")) {
 - 				return value;
 - 			} else if (value === "max") {
 - 				return _max(target, axis);
 - 			}
 - 			return Math.min(_max(target, axis), _getOffset(value, target)[axis]);
 - 		},
 - 
 - 		ScrollToPlugin = _gsScope._gsDefine.plugin({
 - 			propName: "scrollTo",
 - 			API: 2,
 - 			global: true,
 - 			version:"1.8.1",
 - 
 - 			//called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run.
 - 			init: function(target, value, tween) {
 - 				this._wdw = (target === _window);
 - 				this._target = target;
 - 				this._tween = tween;
 - 				if (typeof(value) !== "object") {
 - 					value = {y:value}; //if we don't receive an object as the parameter, assume the user intends "y".
 - 					if (typeof(value.y) === "string" && value.y !== "max" && value.y.charAt(1) !== "=") {
 - 						value.x = value.y;
 - 					}
 - 				} else if (value.nodeType) {
 - 					value = {y:value, x:value};
 - 				}
 - 				this.vars = value;
 - 				this._autoKill = (value.autoKill !== false);
 - 				this.getX = _buildGetter(target, "x");
 - 				this.getY = _buildGetter(target, "y");
 - 				this.x = this.xPrev = this.getX();
 - 				this.y = this.yPrev = this.getY();
 - 				if (value.x != null) {
 - 					this._addTween(this, "x", this.x, _parseVal(value.x, target, "x") - (value.offsetX || 0), "scrollTo_x", true);
 - 					this._overwriteProps.push("scrollTo_x");
 - 				} else {
 - 					this.skipX = true;
 - 				}
 - 				if (value.y != null) {
 - 					this._addTween(this, "y", this.y, _parseVal(value.y, target, "y") - (value.offsetY || 0), "scrollTo_y", true);
 - 					this._overwriteProps.push("scrollTo_y");
 - 				} else {
 - 					this.skipY = true;
 - 				}
 - 				return true;
 - 			},
 - 
 - 			//called each time the values should be updated, and the ratio gets passed as the only parameter (typically it's a value between 0 and 1, but it can exceed those when using an ease like Elastic.easeOut or Back.easeOut, etc.)
 - 			set: function(v) {
 - 				this._super.setRatio.call(this, v);
 - 
 - 				var x = (this._wdw || !this.skipX) ? this.getX() : this.xPrev,
 - 					y = (this._wdw || !this.skipY) ? this.getY() : this.yPrev,
 - 					yDif = y - this.yPrev,
 - 					xDif = x - this.xPrev,
 - 					threshold = ScrollToPlugin.autoKillThreshold;
 - 
 - 				if (this.x < 0) { //can't scroll to a position less than 0! Might happen if someone uses a Back.easeOut or Elastic.easeOut when scrolling back to the top of the page (for example)
 - 					this.x = 0;
 - 				}
 - 				if (this.y < 0) {
 - 					this.y = 0;
 - 				}
 - 				if (this._autoKill) {
 - 					//note: iOS has a bug that throws off the scroll by several pixels, so we need to check if it's within 7 pixels of the previous one that we set instead of just looking for an exact match.
 - 					if (!this.skipX && (xDif > threshold || xDif < -threshold) && x < _max(this._target, "x")) {
 - 						this.skipX = true; //if the user scrolls separately, we should stop tweening!
 - 					}
 - 					if (!this.skipY && (yDif > threshold || yDif < -threshold) && y < _max(this._target, "y")) {
 - 						this.skipY = true; //if the user scrolls separately, we should stop tweening!
 - 					}
 - 					if (this.skipX && this.skipY) {
 - 						this._tween.kill();
 - 						if (this.vars.onAutoKill) {
 - 							this.vars.onAutoKill.apply(this.vars.onAutoKillScope || this._tween, this.vars.onAutoKillParams || []);
 - 						}
 - 					}
 - 				}
 - 				if (this._wdw) {
 - 					_window.scrollTo((!this.skipX) ? this.x : x, (!this.skipY) ? this.y : y);
 - 				} else {
 - 					if (!this.skipY) {
 - 						this._target.scrollTop = this.y;
 - 					}
 - 					if (!this.skipX) {
 - 						this._target.scrollLeft = this.x;
 - 					}
 - 				}
 - 				this.xPrev = this.x;
 - 				this.yPrev = this.y;
 - 			}
 - 
 - 		}),
 - 		p = ScrollToPlugin.prototype;
 - 
 - 	ScrollToPlugin.max = _max;
 - 	ScrollToPlugin.getOffset = _getOffset;
 - 	ScrollToPlugin.autoKillThreshold = 7;
 - 
 - 	p._kill = function(lookup) {
 - 		if (lookup.scrollTo_x) {
 - 			this.skipX = true;
 - 		}
 - 		if (lookup.scrollTo_y) {
 - 			this.skipY = true;
 - 		}
 - 		return this._super._kill.call(this, lookup);
 - 	};
 - 
 - }); if (_gsScope._gsDefine) { _gsScope._gsQueue.pop()(); }
 - 
 - //export to AMD/RequireJS and CommonJS/Node (precursor to full modular build system coming at a later date)
 - (function(name) {
 - 	"use strict";
 - 	var getGlobal = function() {
 - 		return (_gsScope.GreenSockGlobals || _gsScope)[name];
 - 	};
 - 	if (typeof(define) === "function" && define.amd) { //AMD
 - 		define(["TweenLite"], getGlobal);
 - 	} else if (typeof(module) !== "undefined" && module.exports) { //node
 - 		require("../TweenLite.js");
 - 		module.exports = getGlobal();
 - 	}
 - }("ScrollToPlugin"));
 
 
  |