unpoly-rails 0.26.1 → 0.26.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of unpoly-rails might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4bf438ea806a10fac37c4d06794546ddea121fc1
4
- data.tar.gz: 4ca0ea2271bbdc1db21d389ac4b05aaa8ce40f9c
3
+ metadata.gz: cedb595bc61aa389ebd36b8d72488b1323051cce
4
+ data.tar.gz: e5f0712f8d65821539cb6841d7e2fc8323630533
5
5
  SHA512:
6
- metadata.gz: 7a88ade924fbe442f3a295c9c8e0a2f149d90c02f33c478d800fed4e681efb2019923fb31ac155f6d270f07480e159d6f3cc360b09c909c810731fd1878a0a77
7
- data.tar.gz: 33a712c327c6b1cee3947e1f714b267cb1eb6cc359f4571013b6f56ae818b97b945d7b07cd9589b9b33e5e8ecf837ef455c5b456b2fbea70fd2240fff80fe569
6
+ metadata.gz: eeee5c15b68fb9eb764cb33c863c109dffceffa881a6fa791f478454feba794500823337b24fedf8f5d6f77b5e11d90e3567d6e1a0fa8034d06520aa4b10235e
7
+ data.tar.gz: f062f010d33baa4086e83cffa994b48b79b2db93b7d4560a8126cdcc7569276afcc4e2b2549f6f47d2ab1da4360d3e06e628efefd5617ad6c67e421ce7ca4a81
data/CHANGELOG.md CHANGED
@@ -15,6 +15,18 @@ Unreleased
15
15
  ### Breaking changes
16
16
 
17
17
 
18
+
19
+ 0.26.2
20
+ ------
21
+
22
+ ### Compatible changes
23
+
24
+ - Popups anchored to fixed elements are now positioned correctly if the document is scrolled
25
+ - Tooltips can now be anchored to fixed elements
26
+ - [`up-modal`](/up-modal) and [`up-popup`](/up-popup) now support an `up-method` modifier.
27
+
28
+
29
+
18
30
  0.26.1
19
31
  ------
20
32
 
data/dist/unpoly.js CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  (function() {
7
7
  window.up = {
8
- version: "0.26.1"
8
+ version: "0.26.2"
9
9
  };
10
10
 
11
11
  }).call(this);
@@ -1043,8 +1043,9 @@ that might save you from loading something like [Underscore.js](http://underscor
1043
1043
  A function that restores the original CSS when called.
1044
1044
  @internal
1045
1045
  */
1046
- temporaryCss = function($element, css, block) {
1047
- var memo, oldCss;
1046
+ temporaryCss = function(elementOrSelector, css, block) {
1047
+ var $element, memo, oldCss;
1048
+ $element = $(elementOrSelector);
1048
1049
  oldCss = $element.css(Object.keys(css));
1049
1050
  $element.css(css);
1050
1051
  memo = function() {
@@ -1200,11 +1201,10 @@ that might save you from loading something like [Underscore.js](http://underscor
1200
1201
  @internal
1201
1202
  */
1202
1203
  measure = function($element, opts) {
1203
- var $context, $viewport, box, contextCoords, coordinates, elementCoords;
1204
+ var $context, box, contextCoords, coordinates, elementCoords;
1204
1205
  opts = options(opts, {
1205
1206
  relative: false,
1206
- inner: false,
1207
- full: false
1207
+ inner: false
1208
1208
  });
1209
1209
  if (opts.relative) {
1210
1210
  if (opts.relative === true) {
@@ -1236,11 +1236,6 @@ that might save you from loading something like [Underscore.js](http://underscor
1236
1236
  box.width = $element.outerWidth();
1237
1237
  box.height = $element.outerHeight();
1238
1238
  }
1239
- if (opts.full) {
1240
- $viewport = up.layout.viewportOf($element);
1241
- box.right = $viewport.width() - (box.left + box.width);
1242
- box.bottom = $viewport.height() - (box.top + box.height);
1243
- }
1244
1239
  return box;
1245
1240
  };
1246
1241
 
@@ -8337,7 +8332,7 @@ To disable this behavior, give the opening link an `up-sticky` attribute:
8337
8332
 
8338
8333
  (function() {
8339
8334
  up.popup = (function($) {
8340
- var attach, autoclose, close, config, contains, coveredUrl, createFrame, currentUrl, discardHistory, ensureInViewport, isOpen, reset, setPosition, u;
8335
+ var attach, autoclose, close, config, contains, coveredUrl, createFrame, currentUrl, discardHistory, isOpen, reset, setPosition, u;
8341
8336
  u = up.util;
8342
8337
 
8343
8338
  /**
@@ -8406,77 +8401,38 @@ To disable this behavior, give the opening link an `up-sticky` attribute:
8406
8401
  return config.reset();
8407
8402
  };
8408
8403
  setPosition = function($link, position) {
8409
- var $popup, css, linkBox;
8410
- linkBox = u.measure($link, {
8411
- full: true
8412
- });
8413
- css = (function() {
8414
- switch (position) {
8415
- case "bottom-right":
8416
- return {
8417
- right: linkBox.right,
8418
- top: linkBox.top + linkBox.height
8419
- };
8420
- case "bottom-left":
8421
- return {
8422
- left: linkBox.left,
8423
- top: linkBox.top + linkBox.height
8424
- };
8425
- case "top-right":
8426
- return {
8427
- right: linkBox.right,
8428
- bottom: linkBox.top
8429
- };
8430
- case "top-left":
8431
- return {
8432
- left: linkBox.left,
8433
- bottom: linkBox.top
8434
- };
8435
- default:
8436
- return u.error("Unknown position option '%s'", position);
8437
- }
8438
- })();
8404
+ var $popup, css, linkBox, popupBox;
8405
+ css = {};
8406
+ $popup = $('.up-popup');
8407
+ popupBox = u.measure($popup);
8439
8408
  if (u.isFixed($link)) {
8409
+ linkBox = $link.get(0).getBoundingClientRect();
8440
8410
  css['position'] = 'fixed';
8411
+ } else {
8412
+ linkBox = u.measure($link);
8441
8413
  }
8442
- $popup = $('.up-popup');
8443
- $popup.attr('up-position', position);
8444
- $popup.css(css);
8445
- return ensureInViewport($popup);
8446
- };
8447
- ensureInViewport = function($popup) {
8448
- var bottom, box, errorX, errorY, left, right, top;
8449
- box = u.measure($popup, {
8450
- full: true
8451
- });
8452
- errorX = null;
8453
- errorY = null;
8454
- if (box.right < 0) {
8455
- errorX = -box.right;
8456
- }
8457
- if (box.bottom < 0) {
8458
- errorY = -box.bottom;
8459
- }
8460
- if (box.left < 0) {
8461
- errorX = box.left;
8462
- }
8463
- if (box.top < 0) {
8464
- errorY = box.top;
8465
- }
8466
- if (errorX) {
8467
- if (left = parseInt($popup.css('left'))) {
8468
- $popup.css('left', left - errorX);
8469
- } else if (right = parseInt($popup.css('right'))) {
8470
- $popup.css('right', right + errorX);
8471
- }
8472
- }
8473
- if (errorY) {
8474
- if (top = parseInt($popup.css('top'))) {
8475
- return $popup.css('top', top - errorY);
8476
- } else if (bottom = parseInt($popup.css('bottom'))) {
8477
- return $popup.css('bottom', bottom + errorY);
8478
- }
8414
+ switch (position) {
8415
+ case "bottom-right":
8416
+ css['top'] = linkBox.top + linkBox.height;
8417
+ css['left'] = linkBox.left + linkBox.width - popupBox.width;
8418
+ break;
8419
+ case "bottom-left":
8420
+ css['top'] = linkBox.top + linkBox.height;
8421
+ css['left'] = linkBox.left;
8422
+ break;
8423
+ case "top-right":
8424
+ css['top'] = linkBox.top - popupBox.height;
8425
+ css['left'] = linkBox.left + linkBox.width - popupBox.width;
8426
+ break;
8427
+ case "top-left":
8428
+ css['top'] = linkBox.top - popupBox.height;
8429
+ css['left'] = linkBox.left;
8430
+ break;
8431
+ default:
8432
+ u.error("Unknown position option '%s'", position);
8479
8433
  }
8434
+ $popup.attr('up-position', position);
8435
+ return $popup.css(css);
8480
8436
  };
8481
8437
  discardHistory = function() {
8482
8438
  var $popup;
@@ -8542,6 +8498,8 @@ To disable this behavior, give the opening link an `up-sticky` attribute:
8542
8498
  The delay before the animation starts. See [`up.animate`](/up.animate).
8543
8499
  @param {String} [options.easing]
8544
8500
  The timing function that controls the animation's acceleration. [`up.animate`](/up.animate).
8501
+ @param {String} [options.method="GET"]
8502
+ Override the request method.
8545
8503
  @param {Boolean} [options.sticky=false]
8546
8504
  If set to `true`, the popup remains
8547
8505
  open even if the page changes in the background.
@@ -8564,6 +8522,7 @@ To disable this behavior, give the opening link an `up-sticky` attribute:
8564
8522
  options.sticky = u.option(options.sticky, u.castedAttr($link, 'up-sticky'), config.sticky);
8565
8523
  options.history = up.browser.canPushState() ? u.option(options.history, u.castedAttr($link, 'up-history'), config.history) : false;
8566
8524
  options.confirm = u.option(options.confirm, $link.attr('up-confirm'));
8525
+ options.method = up.link.followMethod($link, options);
8567
8526
  animateOptions = up.motion.animateOptions(options, $link, {
8568
8527
  duration: config.openDuration,
8569
8528
  easing: config.openEasing
@@ -8724,6 +8683,8 @@ To disable this behavior, give the opening link an `up-sticky` attribute:
8724
8683
  @param {String} [up-confirm]
8725
8684
  A message that will be displayed in a cancelable confirmation dialog
8726
8685
  before the popup is opened.
8686
+ @param {String} [up-method='GET']
8687
+ Override the request method.
8727
8688
  @param [up-sticky]
8728
8689
  If set to `true`, the popup remains
8729
8690
  open even if the page changes in the background.
@@ -9105,6 +9066,8 @@ To disable this behavior, give the opening link an `up-sticky` attribute:
9105
9066
  @param {String} [options.confirm]
9106
9067
  A message that will be displayed in a cancelable confirmation dialog
9107
9068
  before the modal is being opened.
9069
+ @param {String} [options.method="GET"]
9070
+ Override the request method.
9108
9071
  @param {Object} [options.history=true]
9109
9072
  Whether to add a browser history entry for the modal's source URL.
9110
9073
  @param {String} [options.animation]
@@ -9164,7 +9127,7 @@ To disable this behavior, give the opening link an `up-sticky` attribute:
9164
9127
  Example:
9165
9128
 
9166
9129
  var html = 'before <div class="content">inner</div> after';
9167
- up.modal.extract('/foo', '.content', html);
9130
+ up.modal.extract('.content', html);
9168
9131
 
9169
9132
  The would open a modal with the following contents:
9170
9133
 
@@ -9173,8 +9136,10 @@ To disable this behavior, give the opening link an `up-sticky` attribute:
9173
9136
  Emits events [`up:modal:open`](/up:modal:open) and [`up:modal:opened`](/up:modal:opened).
9174
9137
 
9175
9138
  @function up.modal.extract
9176
- @param {String} url
9177
- The URL to load.
9139
+ @param {String} selector
9140
+ The CSS selector to extract from the HTML.
9141
+ @param {String} html
9142
+ The HTML containing the modal content.
9178
9143
  @param {Object} options
9179
9144
  See options for [`up.modal.follow`](/up.modal.follow).
9180
9145
  @return {Promise}
@@ -9209,6 +9174,7 @@ To disable this behavior, give the opening link an `up-sticky` attribute:
9209
9174
  options.backdropAnimation = u.option(options.backdropAnimation, $link.attr('up-backdrop-animation'), flavorDefault('backdropOpenAnimation', options.flavor));
9210
9175
  options.sticky = u.option(options.sticky, u.castedAttr($link, 'up-sticky'), flavorDefault('sticky', options.flavor));
9211
9176
  options.confirm = u.option(options.confirm, $link.attr('up-confirm'));
9177
+ options.method = up.link.followMethod($link, options);
9212
9178
  animateOptions = up.motion.animateOptions(options, $link, {
9213
9179
  duration: flavorDefault('openDuration', options.flavor),
9214
9180
  easing: flavorDefault('openEasing', options.flavor)
@@ -9476,6 +9442,8 @@ To disable this behavior, give the opening link an `up-sticky` attribute:
9476
9442
  @param {String} [up-confirm]
9477
9443
  A message that will be displayed in a cancelable confirmation dialog
9478
9444
  before the modal is opened.
9445
+ @param {String} [up-method='GET']
9446
+ Override the request method.
9479
9447
  @param {String} [up-sticky]
9480
9448
  If set to `"true"`, the modal remains
9481
9449
  open even if the page changes in the background.
@@ -9632,34 +9600,34 @@ The tooltip element is appended to the end of `<body>`.
9632
9600
  };
9633
9601
  setPosition = function($link, $tooltip, position) {
9634
9602
  var css, linkBox, tooltipBox;
9635
- linkBox = u.measure($link);
9603
+ css = {};
9636
9604
  tooltipBox = u.measure($tooltip);
9637
- css = (function() {
9638
- switch (position) {
9639
- case "top":
9640
- return {
9641
- left: linkBox.left + 0.5 * (linkBox.width - tooltipBox.width),
9642
- top: linkBox.top - tooltipBox.height
9643
- };
9644
- case "left":
9645
- return {
9646
- left: linkBox.left - tooltipBox.width,
9647
- top: linkBox.top + 0.5 * (linkBox.height - tooltipBox.height)
9648
- };
9649
- case "right":
9650
- return {
9651
- left: linkBox.left + linkBox.width,
9652
- top: linkBox.top + 0.5 * (linkBox.height - tooltipBox.height)
9653
- };
9654
- case "bottom":
9655
- return {
9656
- left: linkBox.left + 0.5 * (linkBox.width - tooltipBox.width),
9657
- top: linkBox.top + linkBox.height
9658
- };
9659
- default:
9660
- return u.error("Unknown position option '%s'", position);
9661
- }
9662
- })();
9605
+ if (u.isFixed($link)) {
9606
+ linkBox = $link.get(0).getBoundingClientRect();
9607
+ css['position'] = 'fixed';
9608
+ } else {
9609
+ linkBox = u.measure($link);
9610
+ }
9611
+ switch (position) {
9612
+ case "top":
9613
+ css['top'] = linkBox.top - tooltipBox.height;
9614
+ css['left'] = linkBox.left + 0.5 * (linkBox.width - tooltipBox.width);
9615
+ break;
9616
+ case "left":
9617
+ css['top'] = linkBox.top + 0.5 * (linkBox.height - tooltipBox.height);
9618
+ css['left'] = linkBox.left - tooltipBox.width;
9619
+ break;
9620
+ case "right":
9621
+ css['top'] = linkBox.top + 0.5 * (linkBox.height - tooltipBox.height);
9622
+ css['left'] = linkBox.left + linkBox.width;
9623
+ break;
9624
+ case "bottom":
9625
+ css['top'] = linkBox.top + linkBox.height;
9626
+ css['left'] = linkBox.left + 0.5 * (linkBox.width - tooltipBox.width);
9627
+ break;
9628
+ default:
9629
+ u.error("Unknown position option '%s'", position);
9630
+ }
9663
9631
  $tooltip.attr('up-position', position);
9664
9632
  return $tooltip.css(css);
9665
9633
  };
data/dist/unpoly.min.js CHANGED
@@ -1,3 +1,3 @@
1
- (function(){window.up={version:"0.26.1"}}).call(this),function(){var e=[].slice;up.util=function(t){var n,r,o,u,i,a,s,l,c,p,f,d,m,h,v,g,y,b,w,k,S,x,D,P,$,A,E,T,C,F,O,U,R,_,M,j,K,I,L,N,W,z,q,H,Q,V,J,B,X,G,Y,Z,et,tt,nt,rt,ot,ut,it,at,st,lt,ct,pt,ft,dt,mt,ht,vt,gt,yt,bt,wt,kt,St,xt,Dt,Pt,$t,At,Et,Tt,Ct,Ft,Ot,Ut,Rt,_t,Mt,jt,Kt,It,Lt,Nt,Wt,zt,qt,Ht,Qt,Vt,Jt,Bt,Xt,Gt,Yt,Zt;return ht=t.noop,lt=function(t){var n,r;return n=void 0,r=!1,function(){var o;return o=1<=arguments.length?e.call(arguments,0):[],r?n:(r=!0,n=t.apply(null,o))}},et=function(e,t){return t=t.toString(),(""===t||"80"===t)&&"http:"===e||"443"===t&&"https:"===e},gt=function(e,t){var n,r,o;return n=Pt(e),r=n.protocol+"//"+n.hostname,et(n.protocol,n.port)||(r+=":"+n.port),o=n.pathname,"/"!==o[0]&&(o="/"+o),(null!=t?t.stripTrailingSlash:void 0)===!0&&(o=o.replace(/\/$/,"")),r+=o,(null!=t?t.hash:void 0)===!0&&(r+=n.hash),(null!=t?t.search:void 0)!==!1&&(r+=n.search),r},Pt=function(e){var n;return n=null,tt(e)?(n=t("<a>").attr({href:e}).get(0),j(n.hostname)&&(n.href=n.href)):n=Jt(e),n},vt=function(e){return e?e.toUpperCase():"GET"},n=function(e){var n,r,o,u,i,a,s,l,c,p,f,d,m,h,v,g;for(v=e.split(/[ >]/),o=null,f=c=0,m=v.length;m>c;f=++c){for(a=v[f],i=a.match(/(^|\.|\#)[A-Za-z0-9\-_]+/g),g="div",u=[],p=null,d=0,h=i.length;h>d;d++)switch(s=i[d],s[0]){case".":u.push(s.substr(1));break;case"#":p=s.substr(1);break;default:g=s}l="<"+g,u.length&&(l+=' class="'+u.join(" ")+'"'),p&&(l+=' id="'+p+'"'),l+=">",n=t(l),r&&n.appendTo(r),0===f&&(o=n),r=n}return o},g=function(e,t){var n;return n=document.createElement(e),Y(t)&&(n.innerHTML=t),n},r=function(e,t){var r;return null==t&&(t=document.body),r=n(e),r.addClass("up-placeholder"),r.appendTo(t),r},Lt=function(e){var n,r,o,u,i,a,s,l,c;if(n=t(e),l=void 0,up.puts("Creating selector from element %o",n.get(0)),c=Et(n.attr("up-id")))l="[up-id='"+c+"']";else if(u=Et(n.attr("id")))l="#"+u;else if(s=Et(n.attr("name")))l="[name='"+s+"']";else if(r=Et(mt(n)))for(l="",o=0,a=r.length;a>o;o++)i=r[o],l+="."+i;else l=n.prop("tagName").toLowerCase();return l},mt=function(e){var t,n;return t=e.attr("class")||"",n=t.split(" "),It(n,function(e){return Y(e)&&!e.match(/^up-/)})},y=function(e){var t,n,r,o,u,i,a,s,l,c,p,f;return l=function(e){return"<"+e+"(?: [^>]*)?>"},i=function(e){return"</"+e+">"},t="(?:.|\\n)*?",u=function(e){return"("+e+")"},f=new RegExp(l("head")+t+l("title")+u(t)+i("title")+t+i("body"),"i"),o=new RegExp(l("body")+u(t)+i("body"),"i"),(r=e.match(o))?(s=document.createElement("html"),n=g("body",r[1]),s.appendChild(n),(p=e.match(f))&&(a=g("head"),s.appendChild(a),c=g("title",p[1]),a.appendChild(c)),s):g("div",e)},A=t.extend,Vt=t.trim,S=function(e,t){var n,r,o,u,i;for(i=[],r=n=0,u=e.length;u>n;r=++n)o=e[r],i.push(t(o,r));return i},at=S,qt=function(e,t){var n,r,o,u;for(u=[],r=n=0,o=e-1;o>=0?o>=n:n>=o;r=o>=0?++n:--n)u.push(t(r));return u},B=function(e){return null===e},nt=function(e){return void 0===e},I=function(e){return!nt(e)},J=function(e){return nt(e)||B(e)},H=function(e){return!J(e)},j=function(e){return J(e)||G(e)&&0===Object.keys(e).length||0===e.length},Et=function(e,t){return null==t&&(t=Y),t(e)?e:void 0},Y=function(e){return!j(e)},q=function(e){return"function"==typeof e},tt=function(e){return"string"==typeof e},X=function(e){return"number"==typeof e},Q=function(e){return"object"==typeof e&&!!e},G=function(e){return Q(e)||"function"==typeof e},N=function(e){return!(!e||1!==e.nodeType)},V=function(e){return e instanceof jQuery},Z=function(e){return G(e)&&q(e.then)},K=function(e){return Z(e)&&q(e.resolve)},M=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)},z=function(e){return up.browser.canFormData()&&e instanceof FormData},Qt=function(e){return Array.prototype.slice.call(e)},h=function(e){return M(e)?e.slice():A({},e)},Jt=function(e){return V(e)?e.get(0):e},ct=function(){var t;return t=1<=arguments.length?e.call(arguments,0):[],A.apply(null,[{}].concat(e.call(t)))},Dt=function(e,t){var n,r,o,u;if(o=e?h(e):{},t)for(r in t)n=t[r],u=o[r],H(u)?G(n)&&G(u)&&(o[r]=Dt(u,n)):o[r]=n;return o},xt=function(){var t;return t=1<=arguments.length?e.call(arguments,0):[],w(t,H)},w=function(e,t){var n,r,o,u;for(u=void 0,r=0,o=e.length;o>r;r++)if(n=e[r],t(n)){u=n;break}return u},a=function(e,t){var n,r,o,u;for(u=!1,r=0,o=e.length;o>r;r++)if(n=e[r],t(n)){u=!0;break}return u},i=function(e,t){var n,r,o,u;for(u=!0,r=0,o=e.length;o>r;r++)if(n=e[r],!t(n)){u=!1;break}return u},f=function(e){return It(e,H)},Bt=function(e){var t;return t={},It(e,function(e){return t.hasOwnProperty(e)?!1:t[e]=!0})},It=function(e,t){var n;return n=[],S(e,function(e){return t(e)?n.push(e):void 0}),n},Ct=function(e,t){return It(e,function(e){return!t(e)})},_=function(e,t){return It(e,function(e){return m(t,e)})},Tt=function(){var t,n,r,o;return t=arguments[0],r=2<=arguments.length?e.call(arguments,1):[],o=function(){var e,o,u;for(u=[],e=0,o=r.length;o>e;e++)n=r[e],u.push(t.attr(n));return u}(),w(o,Y)},Wt=function(e,t){return e>0?setTimeout(t,e):t()},dt=function(e){return setTimeout(e,0)},ut=function(e){return e[e.length-1]},p=function(){var e;return e=document.documentElement,{width:e.clientWidth,height:e.clientHeight}},Kt=lt(function(){var e,n,r;return e=t("<div>").css({position:"absolute",top:"0",left:"0",width:"50px",height:"50px",overflowY:"scroll"}),e.appendTo(document.body),n=e.get(0),r=n.offsetWidth-n.clientWidth,e.remove(),r}),k=function(){var e,n,r,o,u,i;return n=document.body,e=t(n),i=document.documentElement,r=e.css("overflow-y"),u="scroll"===r,o="hidden"===r,u||!o&&i.scrollHeight>i.clientHeight},wt=function(t){var n;return n=void 0,function(){var r;return r=1<=arguments.length?e.call(arguments,0):[],null!=t&&(n=t.apply(null,r)),t=void 0,n}},zt=function(e,t,n){var r,o;return o=e.css(Object.keys(t)),e.css(t),r=function(){return e.css(o)},n?(n(),r()):wt(r)},O=function(e){var t,n;return n=e.css(["transform","-webkit-transform"]),j(n)||"none"===n.transform?(t=function(){return e.css(n)},e.css({transform:"translateZ(0)","-webkit-transform":"translateZ(0)"})):t=function(){},t},U=function(e){return e=Jt(e),e.offsetHeight},b=function(e,n,r){var u,i,a,s,l,c,p,f;return u=t(e),r=Dt(r,{duration:300,delay:0,easing:"ease"}),i=t.Deferred(),p=Object.keys(n),l={"transition-property":p.join(", "),"transition-duration":r.duration+"ms","transition-delay":r.delay+"ms","transition-timing-function":r.easing},a=u.css(Object.keys(l)),u.addClass("up-animating"),c=function(){return u.removeClass("up-animating"),u.off("transitionend",s)},s=function(e){var t;return t=e.originalEvent.propertyName,m(p,t)?(i.resolve(),c()):void 0},u.on("transitionend",s),i.then(c),f=O(u),u.css(l),u.css(n),u.data(o,i),i.then(function(){var e;return u.removeData(o),f(),u.css({transition:"none"}),e=!("none"===a["transition-property"]||"all"===a["transition-property"]&&"0"===a["transition-duration"][0]),e?(U(u),u.css(a)):void 0}),i},o="up-animation-deferred",C=function(e){return t(e).each(function(){var e;return(e=$t(this,o))?e.resolve():void 0})},st=function(e,n){var r,o,u,i,a,s;return n=Dt(n,{relative:!1,inner:!1,full:!1}),n.relative?n.relative===!0?a=e.position():(r=t(n.relative),s=e.offset(),r.is(document)?a=s:(i=r.offset(),a={left:s.left-i.left,top:s.top-i.top})):a=e.offset(),u={left:a.left,top:a.top},n.inner?(u.width=e.width(),u.height=e.height()):(u.width=e.outerWidth(),u.height=e.outerHeight()),n.full&&(o=up.layout.viewportOf(e),u.right=o.width()-(u.left+u.width),u.bottom=o.height()-(u.top+u.height)),u},v=function(e,t){var n,r,o,u,i;for(u=e.get(0).attributes,i=[],r=0,o=u.length;o>r;r++)n=u[r],i.push(n.specified?t.attr(n.name,n.value):void 0);return i},T=function(e,t){return e.find(t).addBack(t)},P=function(e){return 27===e.keyCode},m=function(e,t){return e.indexOf(t)>=0},c=function(e,t){var n;switch(n=e.attr(t)){case"false":return!1;case"true":return!0;case"":return!0;default:return n}},it=function(e){return e.getResponseHeader("X-Up-Location")},Ht=function(e){return e.getResponseHeader("X-Up-Title")},pt=function(e){return e.getResponseHeader("X-Up-Method")},kt=function(){var t,n,r,o,u,i;for(o=arguments[0],u=2<=arguments.length?e.call(arguments,1):[],t={},n=0,r=u.length;r>n;n++)i=u[n],o.hasOwnProperty(i)&&(t[i]=o[i]);return t},$=function(){var t,n,r,o,u,i;for(o=arguments[0],u=2<=arguments.length?e.call(arguments,1):[],t=h(o),n=0,r=u.length;r>n;n++)i=u[n],delete t[i];return t},rt=function(e){return!(e.metaKey||e.shiftKey||e.ctrlKey)},ot=function(e){var t;return t=nt(e.button)||0===e.button,t&&rt(e)},Mt=function(){var e;return e=t.Deferred(),e.resolve(),e},jt=function(){return Mt().promise()},Xt=function(){return t.Deferred()},Gt=function(){return Xt().promise()},yt=function(){return t()},_t=function(){var n,r;return n=1<=arguments.length?e.call(arguments,0):[],r=t.when.apply(t,[Mt()].concat(e.call(n))),r.resolve=lt(function(){return S(n,function(e){return e.resolve()})}),r},Nt=function(e,t){var n,r,o;r=[];for(n in t)o=t[n],r.push(J(e.attr(n))?e.attr(n,o):void 0);return r},Ft=function(e,t){var n;return n=e.indexOf(t),n>=0?(e.splice(n,1),t):void 0},ft=function(e){var n,r,o,u,i,s,l;for(i={},l=[],r=[],o=0,u=e.length;u>o;o++)s=e[o],tt(s)?l.push(s):r.push(s);return i.parsed=r,l.length&&(n=l.join(", "),i.parsed.push(n)),i.select=function(){return i.find(void 0)},i.find=function(e){var n,r,o,u,a,s;for(r=yt(),a=i.parsed,o=0,u=a.length;u>o;o++)s=a[o],n=e?e.find(s):t(s),r=r.add(n);return r},i.findWithSelf=function(e){var t;return t=i.find(e),i.doesMatch(e)&&(t=t.add(e)),t},i.doesMatch=function(e){var n;return n=t(e),a(i.parsed,function(e){return n.is(e)})},i.seekUp=function(e){var n,r,o;for(o=t(e),n=o,r=void 0;n.length;){if(i.doesMatch(n)){r=n;break}n=n.parent()}return r||yt()},i},l=function(t){var n,r,o,u,i,a,s,l,c,p,f,d,m,v,g;return null==t&&(t={}),v=void 0,d=function(e){return function(){var n;return n=t[e],X(n)?n:q(n)?n():void 0}},p=d("size"),o=d("expiry"),f=function(e){return t.key?t.key(e):e.toString()},i=function(){return 0!==p()&&0!==o()},r=function(){return v={}},r(),l=function(){var n;return n=1<=arguments.length?e.call(arguments,0):[],t.logPrefix?(n[0]="["+t.logPrefix+"] "+n[0],up.puts.apply(up,n)):void 0},s=function(){return Object.keys(v)},c=function(){var e,t,n,r;return r=h(s()),e=p(),e&&r.length>=e&&(t=null,n=null,S(r,function(e){var r,o;return r=v[e],o=r.timestamp,!n||n>o?(t=e,n=o):void 0}),t)?delete v[t]:void 0},n=function(e,t){var n;return n=u(e,{silent:!0}),I(n)?m(t,n):void 0},g=function(){return(new Date).valueOf()},m=function(e,t){var n;return i()?(c(),n=f(e),v[n]={timestamp:g(),value:t}):void 0},Ft=function(e){var t;return t=f(e),delete v[t]},a=function(e){var t,n;return t=o(),t?(n=g()-e.timestamp,t>n):!0},u=function(e,t){var n,r;return null==t&&(t={}),r=f(e),(n=v[r])?a(n)?(t.silent||l("Cache hit for '%s'",e),n.value):(t.silent||l("Discarding stale cache entry for '%s'",e),void Ft(e)):void(t.silent||l("Cache miss for '%s'",e))},{alias:n,get:u,set:m,remove:Ft,clear:r,keys:s}},d=function(e){var t;return null==e&&(e={}),t={},t.reset=function(){return A(t,e)},t.reset(),Object.preventExtensions(t),t},Yt=function(e){var t,n;return e=Jt(e),t=e.parentNode,n=Qt(e.childNodes),S(n,function(n){return t.insertBefore(n,e)}),t.removeChild(e)},bt=function(e){var t,n;for(t=void 0;(e=e.parent())&&e.length;)if(n=e.css("position"),"absolute"===n||"relative"===n||e.is("body")){t=e;break}return t},W=function(e){var n,r;for(n=t(e);;){if(r=n.css("position"),"fixed"===r)return!0;if(n=n.parent(),0===n.length||n.is(document))return!1}},F=function(e,n){var r,o,u,i;return r=t(e),o=bt(r),u=r.position(),i=o.offset(),r.css({position:"absolute",left:u.left-i.left,top:u.top-i.top+n.scrollTop(),right:"",bottom:""})},Ot=function(e){var t,n,r,o,u,i,a;if(z(e))return up.error("Cannot convert FormData into an array");for(i=Ut(e),t=[],a=i.split("&"),n=0,r=a.length;r>n;n++)u=a[n],Y(u)&&(o=u.split("="),t.push({name:decodeURIComponent(o[0]),value:decodeURIComponent(o[1])}));return t},Ut=function(e){var n;return z(e)?up.error("Cannot convert FormData into a query string"):Y(e)?(n=t.param(e),n=n.replace(/\+/g,"%20")):""},Rt=function(e){var n,r;return n=t(e),r=n.find("input[type=file]").length,r&&up.browser.canFormData()?new FormData(n.get(0)):n.serializeArray()},s=function(e,t,n){var r;return z(e)?e.append(t,n):M(e)?e.push({name:t,value:n}):G(e)?e[t]=n:(tt(e)||J(e))&&(r=Ut([{name:t,value:n}]),e=Y(e)?[e,r].join("&"):r),e},x=function(){var n,r,o,u;throw n=1<=arguments.length?e.call(arguments,0):[],(o=up.log).error.apply(o,n),Zt().then(function(){var r,o,u,i;return r=Et(t(".up-error"))||t('<div class="up-error"></div>').prependTo("body"),u=function(e){return"<span class='up-error-variable'>"+D(e)+"</span>"},o=(i=up.browser).sprintfWithFormattedArgs.apply(i,[u].concat(e.call(n))),r.html(o)}),r=(u=up.browser).sprintf.apply(u,n),new Error(r)},u={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;"},D=function(e){return e.replace(/[&<>"]/g,function(e){return u[e]})},At=function(e,t){var n;return n=e[t],delete e[t],n},$t=function(e,n){var r,o;return r=t(e),o=r.data(n),r.removeData(n),o},E=function(e){var t;return t=ut(e),Q(t)&&!V(t)?e.pop():{}},St=function(e){var n;return n=t(e).css("opacity"),H(n)?parseFloat(n):void 0},Zt=lt(function(){var e;return t.isReady?jt():(e=t.Deferred(),t(function(){return e.resolve()}),e.promise())}),R=function(e){return e},L=function(e){return e=Jt(e),!jQuery.contains(document.documentElement,e)},{isDetached:L,requestDataAsArray:Ot,requestDataAsQuery:Ut,appendRequestData:s,requestDataFromForm:Rt,offsetParent:bt,fixedToAbsolute:F,isFixed:W,presentAttr:Tt,createElement:g,parseUrl:Pt,normalizeUrl:gt,normalizeMethod:vt,createElementFromHtml:y,$createElementFromSelector:n,$createPlaceholder:r,selectorForElement:Lt,extend:A,copy:h,merge:ct,options:Dt,option:xt,error:x,each:S,map:at,times:qt,any:a,all:i,detect:w,select:It,reject:Ct,intersect:_,compact:f,uniq:Bt,last:ut,isNull:B,isDefined:I,isUndefined:nt,isGiven:H,isMissing:J,isPresent:Y,isBlank:j,presence:Et,isObject:G,isFunction:q,isString:tt,isNumber:X,isElement:N,isJQuery:V,isPromise:Z,isDeferred:K,isHash:Q,isArray:M,isFormData:z,isUnmodifiedKeyEvent:rt,isUnmodifiedMouseEvent:ot,nullJQuery:yt,unJQuery:Jt,setTimer:Wt,nextFrame:dt,measure:st,temporaryCss:zt,cssAnimate:b,finishCssAnimate:C,forceCompositing:O,forceRepaint:U,escapePressed:P,copyAttributes:v,findWithSelf:T,contains:m,toArray:Qt,castedAttr:c,locationFromXhr:it,titleFromXhr:Ht,methodFromXhr:pt,clientSize:p,only:kt,except:$,trim:Vt,unresolvableDeferred:Xt,unresolvablePromise:Gt,resolvedPromise:jt,resolvedDeferred:Mt,resolvableWhen:_t,setMissingAttrs:Nt,remove:Ft,memoize:lt,scrollbarWidth:Kt,documentHasVerticalScrollbar:k,config:d,cache:l,unwrapElement:Yt,multiSelector:ft,error:x,pluckData:$t,pluckKey:At,extractOptions:E,isDetached:L,noop:ht,opacity:St,whenReady:Zt,identity:R,escapeHtml:D}}($),up.error=up.util.error}.call(this),function(){var e=[].slice;up.browser=function(t){var n,r,o,u,i,a,s,l,c,p,f,d,m,h,v,g,y,b,w,k,S;return k=up.util,h=function(e,n){var r,o,u,i,a;return null==n&&(n={}),i=k.option(n.method,"get").toLowerCase(),"get"===i?(a=k.requestDataAsQuery(n.data),a&&(e=e+"?"+a),location.href=e):(r=t("<form method='post' action='"+e+"'></form>"),o=function(e){var n;return n=t('<input type="hidden">'),n.attr(e.name,e.value),n.appendTo(r)},o({name:up.proxy.config.wrapMethodParam,value:i}),(u=up.rails.csrfField())&&o(u),k.each(k.requestDataAsArray(n.data),o),r.hide().appendTo("body"),r.submit())},g=function(){var t,n,r;return r=arguments[0],t=2<=arguments.length?e.call(arguments,1):[],k.isDefined(console[r])||(r="log"),i()?"function"==typeof console[r]?console[r].apply(console,t):void 0:(n=y.apply(null,t),"function"==typeof console[r]?console[r](n):void 0)},n=/\%[odisf]/g,w=function(e){var n,r,o,u,i,a,s,l,c;if(a=100,o="",k.isString(e))l=e.replace(/[\n\r\t ]+/g," "),l=l.replace(/^[\n\r\t ]+/,""),l=l.replace(/[\n\r\t ]$/,""),l='"'+l+'"',o='"';else if(k.isUndefined(e))l="undefined";else if(k.isNumber(e)||k.isFunction(e))l=e.toString();else if(k.isArray(e))l="["+k.map(e,w).join(", ")+"]",o="]";else if(k.isJQuery(e))l="$("+k.map(e,w).join(", ")+")",o=")";else if(k.isElement(e)){for(n=t(e),l="<"+e.tagName.toLowerCase(),s=["id","name","class"],u=0,i=s.length;i>u;u++)r=s[u],(c=n.attr(r))&&(l+=" "+r+'="'+c+'"');l+=">",o=">"}else l=JSON.stringify(e);return l.length>a&&(l=l.substr(0,a)+" \u2026",l+=o),l},y=function(){var t,n;return n=arguments[0],t=2<=arguments.length?e.call(arguments,1):[],b.apply(null,[k.identity,n].concat(e.call(t)))},b=function(){var t,r,o,u;return r=arguments[0],u=arguments[1],t=3<=arguments.length?e.call(arguments,2):[],o=0,u.replace(n,function(){var e;return e=t[o],e=r(w(e)),o+=1,e})},S=function(){return location.href},p=k.memoize(function(){return k.isUndefined(document.addEventListener)}),f=k.memoize(function(){return p()||-1!==navigator.appVersion.indexOf("MSIE 9.")}),a=k.memoize(function(){return k.isDefined(history.pushState)&&"get"===l()}),r=k.memoize(function(){return"transition"in document.documentElement.style}),u=k.memoize(function(){return"oninput"in document.createElement("input")}),o=k.memoize(function(){return!!window.FormData}),i=k.memoize(function(){return!f()}),d=k.memoize(function(){var e,n,r,o;return o=t.fn.jquery,r=o.split("."),e=parseInt(r[0]),n=parseInt(r[1]),e>=2||1===e&&n>=9}),v=function(e){var t,n;return n=null!=(t=document.cookie.match(new RegExp(e+"=(\\w+)")))?t[1]:void 0,k.isPresent(n)&&(document.cookie=e+"=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/"),n},s=function(e){return e.preload||k.isBlank(e.confirm)||window.confirm(e.confirm)?k.resolvedPromise():k.unresolvablePromise()},l=k.memoize(function(){return(v("_up_request_method")||"get").toLowerCase()}),m=function(){return!p()&&d()},c=function(){return console.group||(console.group=function(){var t;return t=1<=arguments.length?e.call(arguments,0):[],g.apply(null,["group"].concat(e.call(t)))}),console.groupCollapsed||(console.groupCollapsed=function(){var t;return t=1<=arguments.length?e.call(arguments,0):[],g.apply(null,["groupCollapsed"].concat(e.call(t)))}),console.groupEnd||(console.groupEnd=function(){var t;return t=1<=arguments.length?e.call(arguments,0):[],g.apply(null,["groupEnd"].concat(e.call(t)))})},{url:S,loadPage:h,confirm:s,canPushState:a,canCssTransition:r,canInputEvent:u,canFormData:o,canLogSubstitution:i,isSupported:m,installPolyfills:c,puts:g,sprintf:y,sprintfWithFormattedArgs:b}}(jQuery)}.call(this),function(){var slice=[].slice;up.bus=function($){var boot,emit,emitReset,forgetUpDescription,live,liveUpDescriptions,logEmission,nextUpDescriptionNumber,nobodyPrevents,onEscape,rememberUpDescription,restoreSnapshot,snapshot,u,unbind,upDescriptionNumber,upDescriptionToJqueryDescription,upListenerToJqueryListener;return u=up.util,liveUpDescriptions={},nextUpDescriptionNumber=0,upListenerToJqueryListener=function(e){return function(t){var n;return n=t.$element||$(this),e.apply(n.get(0),[t,n,up.syntax.data(n)])}},upDescriptionToJqueryDescription=function(e,t){var n,r,o;return n=u.copy(e),o=n.pop(),r=void 0,t?(r=upListenerToJqueryListener(o),o._asJqueryListener=r,o._descriptionNumber=++nextUpDescriptionNumber):(r=o._asJqueryListener,r||u.error("up.off: The event listener %o was never registered through up.on")),n.push(r),n},live=function(){var e,t,n;return n=1<=arguments.length?slice.call(arguments,0):[],up.browser.isSupported()?(e=upDescriptionToJqueryDescription(n,!0),rememberUpDescription(n),(t=$(document)).on.apply(t,e),function(){return unbind.apply(null,n)}):function(){}},unbind=function(){var e,t,n;return n=1<=arguments.length?slice.call(arguments,0):[],e=upDescriptionToJqueryDescription(n,!1),forgetUpDescription(n),(t=$(document)).off.apply(t,e)},rememberUpDescription=function(e){var t;return t=upDescriptionNumber(e),liveUpDescriptions[t]=e},forgetUpDescription=function(e){var t;return t=upDescriptionNumber(e),delete liveUpDescriptions[t]},upDescriptionNumber=function(e){return u.last(e)._descriptionNumber},emit=function(e,t){var n,r;return null==t&&(t={}),r=$.Event(e,t),(n=t.$element)?delete t.$element:n=$(document),logEmission(e,t),n.trigger(r),r},logEmission=function(e,t){var n,r,o;return t.hasOwnProperty("message")?(n=t.message,delete t.message,u.isArray(n)?(o=n,n=o[0],r=2<=o.length?slice.call(o,1):[]):r=[],n?u.isPresent(t)?up.puts.apply(up,[n+" (%s (%o))"].concat(slice.call(r),[e],[t])):up.puts.apply(up,[n+" (%s)"].concat(slice.call(r),[e])):void 0):u.isPresent(t)?up.puts("Emitted event %s (%o)",e,t):up.puts("Emitted event %s",e)},nobodyPrevents=function(){var e,t;return e=1<=arguments.length?slice.call(arguments,0):[],t=emit.apply(null,e),t.isDefaultPrevented()?(up.puts("An observer prevented the event %s",e[0]),!1):!0},onEscape=function(e){return live("keydown","body",function(t){return u.escapePressed(t)?e(t):void 0})},snapshot=function(){var e,t,n,r;for(r=[],t=0,n=liveUpDescriptions.length;n>t;t++)e=liveUpDescriptions[t],r.push(e.isDefault=!0);return r},restoreSnapshot=function(){var e,t,n,r,o;for(t=u.reject(liveUpDescriptions,function(e){return e.isDefault}),o=[],n=0,r=t.length;r>n;n++)e=t[n],o.push(unbind.apply(null,e));return o},emitReset=function(){return emit("up:framework:reset",{message:"Resetting framework"})},boot=function(){return up.browser.isSupported()?(up.browser.installPolyfills(),emit("up:framework:boot",{message:"Booting framework"}),emit("up:framework:booted",{message:"Framework booted"}),u.nextFrame(function(){return u.whenReady().then(function(){return emit("up:app:boot",{message:"Booting user application"}),emit("up:app:booted",{message:"User application booted"})})})):void 0},live("up:framework:booted",snapshot),live("up:framework:reset",restoreSnapshot),{knife:eval("undefined"!=typeof Knife&&null!==Knife?Knife.point:void 0),on:live,off:unbind,emit:emit,nobodyPrevents:nobodyPrevents,onEscape:onEscape,emitReset:emitReset,boot:boot}}(jQuery),up.on=up.bus.on,up.off=up.bus.off,up.emit=up.bus.emit,up.reset=up.bus.emitReset,up.boot=up.bus.boot}.call(this),function(){var e=[].slice;up.log=function(){var t,n,r,o,u,i,a,s,l,c,p,f;return p=up.util,t=p.config({prefix:"[UP] ",enabled:!1,collapse:!1}),c=function(){return t.reset()},a=function(e){return""+t.prefix+e},n=function(){var n,r,o;return r=arguments[0],n=2<=arguments.length?e.call(arguments,1):[],t.enabled&&r?(o=up.browser).puts.apply(o,["debug",a(r)].concat(e.call(n))):void 0},l=function(){var n,r,o;return r=arguments[0],n=2<=arguments.length?e.call(arguments,1):[],t.enabled&&r?(o=up.browser).puts.apply(o,["log",a(r)].concat(e.call(n))):void 0},f=function(){var n,r,o;return r=arguments[0],n=2<=arguments.length?e.call(arguments,1):[],t.enabled&&r?(o=up.browser).puts.apply(o,["warn",a(r)].concat(e.call(n))):void 0},i=function(){var n,r,o,u,i;if(o=arguments[0],n=2<=arguments.length?e.call(arguments,1):[],r=n.pop(),!t.enabled||!o)return r();i=t.collapse?"groupCollapsed":"group",(u=up.browser).puts.apply(u,[i,a(o)].concat(e.call(n)));try{return r()}finally{o&&console.groupEnd()}},u=function(){var t,n,r;return n=arguments[0],t=2<=arguments.length?e.call(arguments,1):[],n?(r=up.browser).puts.apply(r,["error",a(n)].concat(e.call(t))):void 0},s=function(){var e;return e=" __ _____ ___ ___ / /_ __\n"+("/ // / _ \\/ _ \\/ _ \\/ / // / "+up.version+"\n")+"\\___/_//_/ .__/\\___/_/\\_. / \n / / / /\n\n",e+=t.enabled?"Call `up.log.disable()` to disable debugging output.":"Call `up.log.enable()` to enable debugging output.",up.browser.puts("log",e)},up.on("up:framework:boot",s),up.on("up:framework:reset",c),o=function(){return t.enabled=!0},r=function(){return t.enabled=!1},{puts:l,debug:n,error:u,warn:f,group:i,config:t,enable:o,disable:r}}(jQuery),up.puts=up.log.puts}.call(this),function(){var e=[].slice;up.syntax=function(t){var n,r,o,u,i,a,s,l,c,p,f,d,m,h,v,g;return g=up.util,n="up-destructable",r="up-destructors",c=[],m=[],l=function(){var t;return t=1<=arguments.length?e.call(arguments,0):[],f.apply(null,[c].concat(e.call(t)))},d=function(){var t;return t=1<=arguments.length?e.call(arguments,0):[],f.apply(null,[m].concat(e.call(t)))},i=function(){var t,n,r,o;return o=arguments[0],t=2<=arguments.length?e.call(arguments,1):[],n=t.pop(),r=g.options(t[0],{priority:0}),"first"===r.priority?r.priority=Number.POSITIVE_INFINITY:"last"===r.priority&&(r.priority=Number.NEGATIVE_INFINITY),{selector:o,callback:n,priority:r.priority,batch:r.batch,keep:r.keep}},f=function(){var t,n,r,o,u;if(u=arguments[0],t=2<=arguments.length?e.call(arguments,1):[],up.browser.isSupported()){for(r=i.apply(null,t),n=0;(o=u[n])&&o.priority>=r.priority;)n+=1;return u.splice(n,0,r)}},u=function(e,t,n){var r,u;return up.puts(e.isDefault?void 0:"Compiling '%s' on %o",e.selector,n),e.keep&&(u=g.isString(e.keep)?e.keep:"",t.attr("up-keep",u)),r=e.callback.apply(n,[t,p(t)]),g.isFunction(r)?o(t,r):void 0},o=function(e,t){var o;return e.addClass(n),o=e.data(r)||[],o.push(t),e.data(r,o)},s=function(e,n){var r;return n=g.options(n),r=t(n.skip),up.log.group("Compiling fragment %o",e.get(0),function(){var n,o,i,a,s,p;for(s=[m,c],p=[],o=0,i=s.length;i>o;o++)a=s[o],p.push(function(){var o,i,s;for(s=[],o=0,i=a.length;i>o;o++)l=a[o],n=g.findWithSelf(e,l.selector),n=n.filter(function(){var e;return e=t(this),g.all(r,function(t){return 0===e.closest(t).length})}),s.push(n.length?up.log.group(l.isDefault?void 0:"Compiling '%s' on %d element(s)",l.selector,n.length,function(){return l.batch?u(l,n,n.get()):n.each(function(){return u(l,t(this),this)})}):void 0);return s}());return p})},a=function(e){return g.findWithSelf(e,"."+n).each(function(){var e,o,u,i,a;for(e=t(this),u=e.data(r),i=0,a=u.length;a>i;i++)(o=u[i])();return e.removeData(r),e.removeClass(n)})},p=function(e){var n,r;return n=t(e),r=n.attr("up-data"),g.isString(r)&&""!==g.trim(r)?JSON.parse(r):{}},v=function(){var e;return e=function(e){return e.isDefault=!0},g.each(c,e),g.each(m,e)},h=function(){var e;return e=function(e){return e.isDefault},c=g.select(c,e),m=g.select(m,e)},up.on("up:framework:booted",v),up.on("up:framework:reset",h),{compiler:l,macro:d,compile:s,clean:a,data:p}}(jQuery),up.compiler=up.syntax.compiler,up.macro=up.syntax.macro,up.ready=function(){return up.util.error("up.ready no longer exists. Please use up.hello instead.")},up.awaken=function(){return up.util.error("up.awaken no longer exists. Please use up.compiler instead.")}}.call(this),function(){up.history=function(e){var t,n,r,o,u,i,a,s,l,c,p,f,d,m,h,v;return v=up.util,n=v.config({popTargets:["body"],restoreScroll:!0}),c=void 0,i=void 0,m=function(){return n.reset(),c=void 0,i=void 0},a=function(e){return v.normalizeUrl(e,{hash:!0})},r=function(){return a(up.browser.url())},o=function(e){return a(e)===r()},s=function(e){return i&&(c=i,i=void 0),i=e},d=function(e,t){return u("replace",e,t)},p=function(e,t){return up.puts("Current location is now %s",e),u("push",e,t)},u=function(e,n,u){var i,a;return u=v.options(u,{force:!1}),u.force||!o(n)?up.browser.canPushState()?(i=e+"State",a=t(),window.history[i](a,"",n),s(r())):v.error("This browser doesn't support history.pushState"):void 0},t=function(){return{fromUp:!0}},h=function(e){var t;return(null!=e?e.fromUp:void 0)?(t=r(),up.log.group("Restoring URL %s",t,function(){var e;return e=n.popTargets.join(", "),up.replace(e,t,{history:!1,title:!0,reveal:!1,transition:"none",saveScroll:!1,restoreScroll:n.restoreScroll})})):up.puts("Ignoring a state not pushed by Unpoly (%o)",e)},l=function(e){return up.log.group("History state popped to URL %s",r(),function(){var t;return s(r()),up.layout.saveScroll({url:c}),t=e.originalEvent.state,h(t)})},up.browser.canPushState()&&(f=function(){return e(window).on("popstate",l),d(r(),{force:!0})},"undefined"!=typeof jasmine&&null!==jasmine?f():setTimeout(f,100)),up.compiler("[up-back]",function(e){return v.isPresent(c)?(v.setMissingAttrs(e,{"up-href":c,"up-restore-scroll":""}),e.removeAttr("up-back"),up.link.makeFollowable(e)):void 0}),up.on("up:framework:reset",m),{config:n,defaults:function(){return v.error("up.history.defaults(...) no longer exists. Set values on he up.history.config property instead.")},push:p,replace:d,url:r,previousUrl:function(){return c},normalizeUrl:a}}(jQuery)}.call(this),function(){var slice=[].slice;up.layout=function($){var SCROLL_PROMISE_KEY,anchoredRight,config,finishScrolling,fixedChildren,lastScrollTops,measureObstruction,reset,restoreScroll,reveal,revealOrRestoreScroll,saveScroll,scroll,scrollTops,u,viewportOf,viewportSelector,viewports,viewportsWithin;return u=up.util,config=u.config({duration:0,viewports:[document,".up-modal-viewport","[up-viewport]"],fixedTop:["[up-fixed~=top]"],fixedBottom:["[up-fixed~=bottom]"],anchoredRight:["[up-anchored~=right]","[up-fixed~=top]","[up-fixed~=bottom]","[up-fixed~=right]"],snap:50,substance:150,easing:"swing"}),lastScrollTops=u.cache({size:30,key:up.history.normalizeUrl}),reset=function(){return config.reset(),lastScrollTops.clear()},SCROLL_PROMISE_KEY="up-scroll-promise",scroll=function(e,t,n){var r,o,i,a,s;return r=$(e),n=u.options(n),i=u.option(n.duration,config.duration),a=u.option(n.easing,config.easing),finishScrolling(r),i>0?(o=$.Deferred(),r.data(SCROLL_PROMISE_KEY,o),o.then(function(){return r.removeData(SCROLL_PROMISE_KEY),r.finish()}),s={scrollTop:t},r.get(0)===document&&(r=$("html, body")),r.animate(s,{duration:i,easing:a,complete:function(){return o.resolve()}}),o):(r.scrollTop(t),u.resolvedDeferred())},finishScrolling=function(e){return $(e).each(function(){var e;return(e=$(this).data(SCROLL_PROMISE_KEY))?e.resolve():void 0})},anchoredRight=function(){return u.multiSelector(config.anchoredRight).select()},measureObstruction=function(){var e,t,n,r;return n=function(e,t){var n,r;return n=$(e),r=n.css(t),u.isPresent(r)||u.error("Fixed element %o must have a CSS attribute %s",n.get(0),t),parseInt(r)+n.height()},t=function(){var e,t,o,u;for(o=$(config.fixedTop.join(", ")),u=[],e=0,t=o.length;t>e;e++)r=o[e],u.push(n(r,"top"));return u}(),e=function(){var e,t,o,u;for(o=$(config.fixedBottom.join(", ")),u=[],e=0,t=o.length;t>e;e++)r=o[e],u.push(n(r,"bottom"));return u}(),{top:Math.max.apply(Math,[0].concat(slice.call(t))),bottom:Math.max.apply(Math,[0].concat(slice.call(e)))}},reveal=function(e,t){var n,r,o,i,a,s,l,c,p,f,d,m,h,v;return n=$(e),up.puts("Revealing fragment %o",e.get(0)),t=u.options(t),r=t.viewport?$(t.viewport):viewportOf(n),m=u.option(t.snap,config.snap),v=r.is(document),h=v?u.clientSize().height:r.height(),p=r.scrollTop(),s=p,c=void 0,l=void 0,v?(l=measureObstruction(),c=0):(l={top:0,bottom:0},c=p),f=function(){return s+l.top},d=function(){return s+h-l.bottom-1},o=u.measure(n,{relative:r}),i=o.top+c,a=i+Math.min(o.height,config.substance)-1,a>d()&&(s+=a-d()),(i<f()||t.top)&&(s=i-l.top),m>s&&(s=0),s!==p?scroll(r,s,t):u.resolvedDeferred()},viewportSelector=function(){return u.multiSelector(config.viewports)},viewportOf=function(e,t){var n,r;return null==t&&(t={}),n=$(e),r=viewportSelector().seekUp(n),0===r.length&&t.strict!==!1&&u.error("Could not find viewport for %o",n),r},viewportsWithin=function(e){var t;return t=$(e),viewportSelector().findWithSelf(t)},viewports=function(){return viewportSelector().select()},scrollTops=function(){var e,t,n,r,o,u,i;for(u={},o=config.viewports,t=0,r=o.length;r>t;t++)i=o[t],e=$(i),e.length&&(n=i,i===document&&(n="document"),u[n]=e.scrollTop());return u},fixedChildren=function(e){var t,n;return null==e&&(e=void 0),e||(e=document.body),n=$(e),t=n.find("[up-fixed]"),u.isPresent(config.fixedTop)&&(t=t.add(n.find(config.fixedTop.join(", ")))),u.isPresent(config.fixedBottom)&&(t=t.add(n.find(config.fixedBottom.join(", ")))),t},saveScroll=function(e){var t,n;return null==e&&(e={}),n=u.option(e.url,up.history.url()),t=u.option(e.tops,scrollTops()),up.puts("Saving scroll positions for URL %s (%o)",n,t),lastScrollTops.set(n,t)},restoreScroll=function(e){var t,n,r,o,i;return null==e&&(e={}),i=up.history.url(),r=void 0,e.around?(n=viewportsWithin(e.around),t=viewportOf(e.around),r=t.add(n)):r=viewports(),o=lastScrollTops.get(i),up.log.group("Restoring scroll positions for URL %s to %o",i,o,function(){var e,t,n,i;for(t in o)i=o[t],n="document"===t?document:t,e=r.filter(n),scroll(e,i,{duration:0});return u.resolvedDeferred()})},revealOrRestoreScroll=function(e,t){var n,r,o,i;return n=$(e),t.restoreScroll?restoreScroll({around:n}):t.reveal?(t.source&&(i=u.parseUrl(t.source),i.hash&&"#"!==i.hash&&(o=i.hash.substr(1),r=u.findWithSelf(n,"#"+o+", a[name='"+o+"']"),r.length&&(n=r))),reveal(n)):u.resolvedDeferred()},up.on("up:framework:reset",reset),{knife:eval("undefined"!=typeof Knife&&null!==Knife?Knife.point:void 0),reveal:reveal,scroll:scroll,finishScrolling:finishScrolling,config:config,defaults:function(){return u.error("up.layout.defaults(...) no longer exists. Set values on he up.layout.config property instead.")},viewportOf:viewportOf,viewportsWithin:viewportsWithin,viewports:viewports,scrollTops:scrollTops,saveScroll:saveScroll,restoreScroll:restoreScroll,revealOrRestoreScroll:revealOrRestoreScroll,anchoredRight:anchoredRight,fixedChildren:fixedChildren}
2
- }(jQuery),up.scroll=up.layout.scroll,up.reveal=up.layout.reveal}.call(this),function(){up.flow=function($){var autofocus,config,destroy,emitFragmentInserted,emitFragmentKept,extract,filterScripts,findKeepPlan,findOldFragment,first,hello,isRealElement,oldFragmentNotFound,parseImplantSteps,parseResponse,processResponse,reload,replace,reset,resolveSelector,setSource,source,swapElements,transferKeepableElements,u,updateHistory;return u=up.util,config=u.config({runInlineScripts:!0,runLinkedScripts:!1}),reset=function(){return config.reset()},setSource=function(e,t){var n;return n=$(e),u.isPresent(t)&&(t=u.normalizeUrl(t)),n.attr("up-source",t)},source=function(e){var t;return t=$(e).closest("[up-source]"),u.presence(t.attr("up-source"))||up.browser.url()},resolveSelector=function(e,t){var n,r;return u.isString(e)?(r=e,u.contains(r,"&")&&(t?(n=u.selectorForElement(t),r=r.replace(/\&/,n)):u.error("Found origin reference (%s) in selector %s, but options.origin is missing","&",r))):r=u.selectorForElement(e),r},replace=function(e,t,n){var r,o,i,a,s,l;return up.puts("Replacing %s from %s (%o)",e,t,n),n=u.options(n),l=resolveSelector(e,n.origin),r=u.option(n.failTarget,"body"),r=resolveSelector(r,n.origin),up.browser.canPushState()||n.history===!1?(s={url:t,method:n.method,data:n.data,target:l,failTarget:r,cache:n.cache,preload:n.preload,headers:n.headers},a=up.ajax(s),i=function(e,r,o){return processResponse(!0,l,t,s,o,n)},o=function(e){return processResponse(!1,r,t,s,e,n)},a=a.then(i,o)):(n.preload||up.browser.loadPage(t,u.only(n,"method","data")),u.unresolvablePromise())},processResponse=function(e,t,n,r,o,i){var a,s,l,c;return i.method=u.normalizeMethod(u.option(u.methodFromXhr(o),i.method)),i.title=u.option(u.titleFromXhr(o),i.title),i.title===!1||u.isString(i.title)||i.history===!1&&i.title!==!0||(i.title=u.titleFromXhr(o)),a="GET"===i.method,(c=u.locationFromXhr(o))?(n=c,e&&up.proxy.isCachable(r)&&(s={url:n,method:u.methodFromXhr(o),target:t},up.proxy.alias(r,s))):a&&(l=u.requestDataAsQuery(i.data))&&(n=n+"?"+l),e?a?(i.history===!1||u.isString(i.history)||(i.history=n),i.source===!1||u.isString(i.source)||(i.source=n)):(u.isString(i.history)||(i.history=!1),u.isString(i.source)||(i.source="keep")):(i.transition=i.failTransition,i.failTransition=void 0,a?(i.history!==!1&&(i.history=n),i.source!==!1&&(i.source=n)):(i.source="keep",i.history=!1)),i.preload?u.resolvedPromise():extract(t,o.responseText,i)},extract=function(e,t,n){return up.log.group("Extracting %s from %d bytes of HTML",e,null!=t?t.length:void 0,function(){var r,o,i;return n=u.options(n,{historyMethod:"push",requireMatch:!0,keep:!0}),i=resolveSelector(e,n.origin),o=parseResponse(t,n),n.title||(n.title=o.title()),n.saveScroll!==!1&&up.layout.saveScroll(),r=u.resolvedPromise(),n.beforeSwap&&(r=r.then(n.beforeSwap)),r=r.then(function(){return updateHistory(n)}),r=r.then(function(){var e,t,r,u,a;for(a=[],r=parseImplantSteps(i,n),e=0,t=r.length;t>e;e++)u=r[e],up.log.group("Updating %s",u.selector,function(){var e,t,r,i;return t=findOldFragment(u.selector,n),e=null!=(r=o.find(u.selector))?r.first():void 0,t&&e?(filterScripts(e,n),i=swapElements(t,e,u.pseudoClass,u.transition,n),a.push(i)):void 0});return $.when.apply($,a)}),n.afterSwap&&(r=r.then(n.afterSwap)),r})},findOldFragment=function(e,t){return first(".up-popup "+e)||first(".up-modal "+e)||first(e)||oldFragmentNotFound(e,t)},oldFragmentNotFound=function(e,t){var n;return t.requireMatch?(n="Could not find selector %s in current body HTML","#"===n[0]&&(n+=" (avoid using IDs)"),u.error(n,e)):void 0},filterScripts=function(e,t){var n,r,o,i,a,s,l,c,p,f;for(c=u.option(t.runInlineScripts,config.runInlineScripts),p=u.option(t.runLinkedScripts,config.runLinkedScripts),r=u.findWithSelf(e,"script"),l=[],a=0,s=r.length;s>a;a++)f=r[a],n=$(f),i=u.isPresent(n.attr("src")),o=!i,l.push(i&&p||o&&c?void 0:n.remove());return l},parseResponse=function(e,t){var n;return n=u.createElementFromHtml(e),{title:function(){var e;return null!=(e=n.querySelector("title"))?e.textContent:void 0},find:function(r){var o;return(o=$.find(r,n)[0])?$(o):t.requireMatch?u.error("Could not find selector %s in response %o",r,e):void 0}}},updateHistory=function(e){return e.title&&(document.title=e.title),e.history?up.history[e.historyMethod](e.history):void 0},swapElements=function(e,t,n,r,o){var i,a,s,l;return r||(r="none"),"keep"===o.source&&(o=u.merge(o,{source:source(e)})),up.motion.finish(e),n?(i=t.contents().wrap('<span class="up-insertion"></span>').parent(),"before"===n?e.prepend(i):e.append(i),hello(i.children(),o),s=up.layout.revealOrRestoreScroll(i,o),s=s.then(function(){return up.animate(i,r,o)}),s=s.then(function(){return u.unwrapElement(i)})):(a=findKeepPlan(e,t,o))?(emitFragmentKept(a),s=u.resolvedPromise()):(l=function(){return o.keepPlans=transferKeepableElements(e,t,o),e.is("body")?(up.syntax.clean(e),e.replaceWith(t)):t.insertBefore(e),o.source!==!1&&setSource(t,o.source),autofocus(t),hello(t,o),up.morph(e,t,r,o)},s=destroy(e,{animation:l})),s},transferKeepableElements=function(e,t,n){var r,o,i,a,s,l,c,p;if(a=[],n.keep)for(p=e.find("[up-keep]"),i=0,l=p.length;l>i;i++)s=p[i],r=$(s),(c=findKeepPlan(r,t,u.merge(n,{descendantsOnly:!0})))&&(o=r.clone(),r.replaceWith(o),c.$newElement.replaceWith(r),a.push(c));return a},findKeepPlan=function(e,t,n){var r,o,i,a,s;return n.keep&&(r=e,(s=u.castedAttr(r,"up-keep"))&&(u.isString(s)||(s="&"),s=resolveSelector(s,r),o=n.descendantsOnly?t.find(s):u.findWithSelf(t,s),o=o.first(),o.length&&o.is("[up-keep]")&&(i={$element:r,$newElement:o,newData:up.syntax.data(o)},a=u.merge(i,{message:["Keeping element %o",r.get(0)]}),up.bus.nobodyPrevents("up:fragment:keep",a))))?i:void 0},parseImplantSteps=function(e,t){var n,r,o,i,a,s,l,c,p,f,d,m;for(d=t.transition||t.animation||"none",n=/\ *,\ */,r=e.split(n),m=u.isString(m)?d.split(n):[d],l=[],o=i=0,a=r.length;a>i;o=++i)c=r[o],p=c.match(/^(.+?)(?:\:(before|after))?$/),p||u.error('Could not parse selector atom "%s"',c),e=p[1],"html"===e&&(e="body"),s=p[2],f=m[o]||u.last(m),l.push({selector:e,pseudoClass:s,transition:f});return l},hello=function(e,t){var n,r,o,i,a,s;for(n=$(e),t=u.options(t,{keepPlans:[]}),o=[],s=t.keepPlans,r=0,i=s.length;i>r;r++)a=s[r],emitFragmentKept(a),o.push(a.$element);return up.syntax.compile(n,{skip:o}),emitFragmentInserted(n,t),n},emitFragmentInserted=function(e,t){var n;return n=$(e),up.emit("up:fragment:inserted",{$element:n,message:["Inserted fragment %o",n.get(0)],origin:t.origin})},emitFragmentKept=function(e){var t;return t=u.merge(e,{message:["Kept fragment %o",e.$element.get(0)]}),up.emit("up:fragment:kept",t)},autofocus=function(e){var t,n;return n="[autofocus]:last",t=u.findWithSelf(e,n),t.length&&t.get(0)!==document.activeElement?t.focus():void 0},isRealElement=function(e){var t;return t=".up-ghost, .up-destroying",0===e.closest(t).length},first=function(e){var t,n,r,o,i,a;for(o=void 0,o=u.isString(e)?$(e).get():e,n=void 0,i=0,a=o.length;a>i;i++)if(r=o[i],t=$(r),isRealElement(t)){n=t;break}return n},destroy=function(e,t){var n,r,o,i,a;return n=$(e),n.is(".up-placeholder, .up-tooltip, .up-modal, .up-popup")||(i=["Destroying fragment %o",n.get(0)],a=["Destroyed fragment %o",n.get(0)]),0===n.length?u.resolvedDeferred():up.bus.nobodyPrevents("up:fragment:destroy",{$element:n,message:i})?(t=u.options(t,{animation:!1}),r=up.motion.animateOptions(t),n.addClass("up-destroying"),u.isPresent(t.url)&&up.history.push(t.url),u.isPresent(t.title)&&(document.title=t.title),o=u.presence(t.animation,u.isDeferred)||up.motion.animate(n,t.animation,r),o.then(function(){return up.syntax.clean(n),up.emit("up:fragment:destroyed",{$element:n,message:a}),n.remove()}),o):$.Deferred()},reload=function(e,t){var n;return t=u.options(t,{cache:!1}),n=t.url||source(e),replace(e,n,t)},up.on("up:app:boot",function(){var e;return e=$(document.body),setSource(e,up.browser.url()),hello(e)}),up.on("up:framework:reset",reset),{knife:eval("undefined"!=typeof Knife&&null!==Knife?Knife.point:void 0),replace:replace,reload:reload,destroy:destroy,extract:extract,first:first,source:source,resolveSelector:resolveSelector,hello:hello,config:config}}(jQuery),up.replace=up.flow.replace,up.extract=up.flow.extract,up.reload=up.flow.reload,up.destroy=up.flow.destroy,up.first=up.flow.first,up.hello=up.flow.hello}.call(this),function(){var e=[].slice;up.motion=function(t){var n,r,o,u,i,a,s,l,c,p,f,d,m,h,v,g,y,b,w,k,S,x,D,P,$,A,E,T;return E=up.util,a={},c={},$={},p={},l=E.config({duration:300,delay:0,easing:"ease",enabled:!0}),k=function(){return a=E.copy(c),$=E.copy(p),l.reset()},v=function(){return l.enabled&&up.browser.canCssTransition()},o=function(e,n,r){var i;return i=t(e),m(i),r=u(r),"none"===n||n===!1?b():E.isFunction(n)?s(n(i,r),n):E.isString(n)?o(i,d(n),r):E.isHash(n)?v()?E.cssAnimate(i,n,r):(i.css(n),E.resolvedDeferred()):E.error("Unknown animation type for %o",n)},u=function(){var t,n,r,o,u;return n=1<=arguments.length?e.call(arguments,0):[],u=n.shift()||{},t=E.isJQuery(n[0])?n.shift():E.nullJQuery(),o=E.isObject(n[0])?n.shift():{},r={},r.easing=E.option(u.easing,E.presentAttr(t,"up-easing"),o.easing,l.easing),r.duration=Number(E.option(u.duration,E.presentAttr(t,"up-duration"),o.duration,l.duration)),r.delay=Number(E.option(u.delay,E.presentAttr(t,"up-delay"),o.delay,l.delay)),r},d=function(e){return a[e]||E.error("Unknown animation %o",e)},r="up-ghosting-deferred",n="up-ghosting",T=function(e,t,o,u){var i,a,s,l,c,p,f,d;return o.copy===!1||e.is(".up-ghost")||t.is(".up-ghost")?u(e,t):(p=void 0,l=void 0,f=void 0,c=void 0,a=up.layout.viewportOf(e),i=e.add(t),E.temporaryCss(t,{display:"none"},function(){return p=w(e,a),f=a.scrollTop()}),E.temporaryCss(e,{display:"none"},function(){return up.layout.revealOrRestoreScroll(t,o),l=w(t,a),c=a.scrollTop()}),p.moveTop(c-f),e.hide(),d=E.temporaryCss(t,{opacity:"0"}),s=u(p.$ghost,l.$ghost),i.data(r,s),i.addClass(n),s.then(function(){return i.removeData(r),i.removeClass(n),d(),p.$bounds.remove(),l.$bounds.remove()}),s)},m=function(e){var r,o,u;return null==e&&(e=".up-animating"),o=t(e),r=E.findWithSelf(o,".up-animating"),E.finishCssAnimate(r),u=E.findWithSelf(o,"."+n),h(u)},h=function(e){return e.each(function(){var e,n;return e=t(this),(n=E.pluckData(e,r))?n.resolve():void 0})},s=function(e,t){return E.isDeferred(e)?e:E.error("Did not return a promise with .then and .resolve methods: %o",t)},y=function(e,n,r,i){var l,c;return"none"===r&&(r=!1),i=E.options(i),c=t(e),l=t(n),f(c,r),f(l,r),up.log.group(r?"Morphing %o to %o (using %s, %o)":void 0,c.get(0),l.get(0),r,i,function(){var e,t,n,p;return t=E.only(i,"reveal","restoreScroll","source"),t=E.extend(t,u(i)),v()?(m(c),m(l),r?(e=a[r])?(x(c,l,t),o(l,e,t)):(p=E.presence(r,E.isFunction)||$[r])?T(c,l,t,function(e,n){var o;return o=p(e,n,t),s(o,r)}):E.isString(r)&&r.indexOf("/")>=0?(n=r.split("/"),p=function(e,t,r){return S(o(e,n[0],r),o(t,n[1],r))},y(c,l,p,t)):E.error("Unknown transition %o",r):x(c,l,t)):x(c,l,t)})},f=function(e,t){var n;return t&&0===e.parents("body").length?(n=e.get(0),E.error("Can't morph a <%s> element (%o)",n.tagName,n)):void 0},x=function(e,t,n){return e.hide(),up.layout.revealOrRestoreScroll(t,n)},w=function(e,n){var r,o,u,i,a,s,l,c,p;for(i=E.measure(e,{relative:!0,inner:!0}),u=e.clone(),u.find("script").remove(),u.css({position:"static"===e.css("position")?"static":"relative",top:"",right:"",bottom:"",left:"",width:"100%",height:"100%"}),u.addClass("up-ghost"),r=t('<div class="up-bounds"></div>'),r.css({position:"absolute"}),r.css(i),p=i.top,c=function(e){return 0!==e?(p+=e,r.css({top:p})):void 0},u.appendTo(r),r.insertBefore(e),c(e.offset().top-u.offset().top),o=up.layout.fixedChildren(u),s=0,l=o.length;l>s;s++)a=o[s],E.fixedToAbsolute(a,n);return{$ghost:u,$bounds:r,moveTop:c}},P=function(e,t){return $[e]=t},i=function(e,t){return a[e]=t},D=function(){return c=E.copy(a),p=E.copy($)},S=E.resolvableWhen,b=E.resolvedDeferred,g=function(e){return e===!1||"none"===e||e===b},i("none",b),i("fade-in",function(e,t){return e.css({opacity:0}),o(e,{opacity:1},t)}),i("fade-out",function(e,t){return e.css({opacity:1}),o(e,{opacity:0},t)}),A=function(e,t){return{transform:"translate("+e+"px, "+t+"px)"}},i("move-to-top",function(e,t){var n,r;return n=E.measure(e),r=n.top+n.height,e.css(A(0,0)),o(e,A(0,-r),t)}),i("move-from-top",function(e,t){var n,r;return n=E.measure(e),r=n.top+n.height,e.css(A(0,-r)),o(e,A(0,0),t)}),i("move-to-bottom",function(e,t){var n,r;return n=E.measure(e),r=E.clientSize().height-n.top,e.css(A(0,0)),o(e,A(0,r),t)}),i("move-from-bottom",function(e,t){var n,r;return n=E.measure(e),r=E.clientSize().height-n.top,e.css(A(0,r)),o(e,A(0,0),t)}),i("move-to-left",function(e,t){var n,r;return n=E.measure(e),r=n.left+n.width,e.css(A(0,0)),o(e,A(-r,0),t)}),i("move-from-left",function(e,t){var n,r;return n=E.measure(e),r=n.left+n.width,e.css(A(-r,0)),o(e,A(0,0),t)}),i("move-to-right",function(e,t){var n,r;return n=E.measure(e),r=E.clientSize().width-n.left,e.css(A(0,0)),o(e,A(r,0),t)}),i("move-from-right",function(e,t){var n,r;return n=E.measure(e),r=E.clientSize().width-n.left,e.css(A(r,0)),o(e,A(0,0),t)}),i("roll-down",function(e,t){var n,r,u;return r=e.height(),u=E.temporaryCss(e,{height:"0px",overflow:"hidden"}),n=o(e,{height:r+"px"},t),n.then(u),n}),P("none",b),P("move-left",function(e,t,n){return S(o(e,"move-to-left",n),o(t,"move-from-right",n))}),P("move-right",function(e,t,n){return S(o(e,"move-to-right",n),o(t,"move-from-left",n))}),P("move-up",function(e,t,n){return S(o(e,"move-to-top",n),o(t,"move-from-bottom",n))}),P("move-down",function(e,t,n){return S(o(e,"move-to-bottom",n),o(t,"move-from-top",n))}),P("cross-fade",function(e,t,n){return S(o(e,"fade-out",n),o(t,"fade-in",n))}),up.on("up:framework:booted",D),up.on("up:framework:reset",k),{morph:y,animate:o,animateOptions:u,finish:m,transition:P,animation:i,config:l,isEnabled:v,defaults:function(){return E.error("up.motion.defaults(...) no longer exists. Set values on he up.motion.config property instead.")},none:b,when:S,prependCopy:w,isNone:g}}(jQuery),up.transition=up.motion.transition,up.animation=up.motion.animation,up.morph=up.motion.morph,up.animate=up.motion.animate}.call(this),function(){var e=[].slice;up.proxy=function(t){var n,r,o,u,i,a,s,l,c,p,f,d,m,h,v,g,y,b,w,k,S,x,D,P,$,A,E,T,C,F,O,U,R,_;return _=up.util,n=void 0,P=void 0,O=void 0,S=void 0,U=void 0,A=[],p=_.config({slowDelay:300,preloadDelay:75,cacheSize:70,cacheExpiry:3e5,maxRequests:4,wrapMethods:["PATCH","PUT","DELETE"],wrapMethodParam:"_method",safeMethods:["GET","OPTIONS","HEAD"]}),i=function(e){return k(e),[e.url,e.method,_.requestDataAsQuery(e.data),e.target].join("|")},u=_.cache({size:function(){return p.cacheSize},expiry:function(){return p.cacheExpiry},key:i}),f=function(e){var t,n,r,o,i,a,s;if(e=k(e),m(e))for(n=[e],"html"!==e.target&&(a=_.merge(e,{target:"html"}),n.push(a),"body"!==e.target&&(i=_.merge(e,{target:"body"}),n.push(i))),r=0,o=n.length;o>r;r++)if(t=n[r],s=u.get(t))return s},a=function(){return clearTimeout(P),P=null},s=function(){return clearTimeout(O),O=null},T=function(){return n=null,a(),s(),S=0,p.reset(),u.clear(),U=!1,A=[]},T(),k=function(e){return e._normalized||(e.method=_.normalizeMethod(e.method),e.url&&(e.url=_.normalizeUrl(e.url)),e.target||(e.target="body"),e._normalized=!0),e},r=function(){var t,n,r,o,u,i,a;return t=1<=arguments.length?e.call(arguments,0):[],o=_.extractOptions(t),_.isGiven(t[0])&&(o.url=t[0]),n=o.cache===!0,r=o.cache===!1,a=_.only(o,"url","method","data","target","headers","_normalized"),a=k(a),u=!0,h(a)||n?(i=f(a))&&!r?(up.puts("Re-using cached response for %s %s",a.method,a.url),u="pending"===i.state()):(i=b(a),F(a,i),i.fail(function(){return E(a)})):(c(),i=b(a)),u&&!o.preload&&(w(),i.always(y)),console.groupEnd(),i},m=function(e){return!_.isFormData(e.data)},v=function(){return 0===S},d=function(){return S>0},w=function(){var e,t;return t=v(),S+=1,t?(e=function(){return d()?(up.emit("up:proxy:slow",{message:"Proxy is busy"}),U=!0):void 0},O=_.setTimer(p.slowDelay,e)):void 0},y=function(){return S-=1,v()&&U?(up.emit("up:proxy:recover",{message:"Proxy is idle"}),U=!1):void 0},b=function(e){return S<p.maxRequests?g(e):$(e)},$=function(e){var n,r;return up.puts("Queuing request for %s %s",e.method,e.url),n=t.Deferred(),r={deferred:n,request:e},A.push(r),n.promise()},g=function(e){var n;return up.emit("up:proxy:load",_.merge(e,{message:["Loading %s %s",e.method,e.url]})),e=_.copy(e),e.headers||(e.headers={}),e.headers["X-Up-Target"]=e.target,_.contains(p.wrapMethods,e.method)&&(e.data=_.appendRequestData(e.data,p.wrapMethodParam,e.method),e.method="POST"),_.isFormData(e.data)&&(e.contentType=!1,e.processData=!1),n=t.ajax(e),n.done(function(t,n,r){return C(e,r)}),n.fail(function(t){return C(e,t)}),n},C=function(e,t){var n;return up.emit("up:proxy:received",_.merge(e,{message:["Server responded with %s %s (%d bytes)",t.status,t.statusText,null!=(n=t.responseText)?n.length:void 0]})),x()},x=function(){var t,n;(t=A.shift())&&(n=g(t.request),n.done(function(){var n,r;return n=1<=arguments.length?e.call(arguments,0):[],(r=t.deferred).resolve.apply(r,n)}),n.fail(function(){var n,r;return n=1<=arguments.length?e.call(arguments,0):[],(r=t.deferred).reject.apply(r,n)}))},o=u.alias,F=u.set,E=u.remove,c=u.clear,h=function(e){return k(e),_.contains(p.safeMethods,e.method)},l=function(e){var t,r;return r=parseInt(_.presentAttr(e,"up-delay"))||p.preloadDelay,e.is(n)?void 0:(n=e,a(),t=function(){return D(e),n=null},R(t,r))},R=function(e,t){return P=setTimeout(e,t)},D=function(e,n){var r,o;return r=t(e),n=_.options(n),o=up.link.followMethod(r,n),h({method:o})?up.log.group("Preloading link %o",r,function(){return n.preload=!0,up.follow(r,n)}):(up.puts("Won't preload %o due to unsafe method %s",r,o),_.resolvedPromise())},up.on("mouseover mousedown touchstart","[up-preload]",function(e,t){return up.link.childClicked(e,t)?void 0:l(t)}),up.on("up:framework:reset",T),{preload:D,ajax:r,get:f,alias:o,clear:c,remove:E,isIdle:v,isBusy:d,isCachable:m,config:p,defaults:function(){return _.error("up.proxy.defaults(...) no longer exists. Set values on he up.proxy.config property instead.")}}}(jQuery),up.ajax=up.proxy.ajax}.call(this),function(){up.link=function($){var allowDefault,childClicked,follow,followMethod,followVariantSelectors,isFollowable,makeFollowable,onAction,shouldProcessLinkEvent,u,visit;return u=up.util,visit=function(e,t){var n;return t=u.options(t),n=u.option(t.target,"body"),up.replace(n,e,t)},follow=function(e,t){var n,r,o;return n=$(e),t=u.options(t),o=u.option(n.attr("up-href"),n.attr("href")),r=u.option(t.target,n.attr("up-target"),"body"),t.failTarget=u.option(t.failTarget,n.attr("up-fail-target"),"body"),t.transition=u.option(t.transition,u.castedAttr(n,"up-transition"),"none"),t.failTransition=u.option(t.failTransition,u.castedAttr(n,"up-fail-transition"),"none"),t.history=u.option(t.history,u.castedAttr(n,"up-history")),t.reveal=u.option(t.reveal,u.castedAttr(n,"up-reveal"),!0),t.cache=u.option(t.cache,u.castedAttr(n,"up-cache")),t.restoreScroll=u.option(t.restoreScroll,u.castedAttr(n,"up-restore-scroll")),t.method=followMethod(n,t),t.origin=u.option(t.origin,n),t.confirm=u.option(t.confirm,n.attr("up-confirm")),t=u.merge(t,up.motion.animateOptions(t,n)),up.browser.confirm(t).then(function(){return up.replace(r,o,t)})},followMethod=function(e,t){var n;return n=$(e),t=u.options(t),u.option(t.method,n.attr("up-method"),n.attr("data-method"),"get").toUpperCase()},childClicked=function(e,t){var n,r;return n=$(e.target),r=n.closest("a, [up-href]"),r.length&&t.find(r).length},shouldProcessLinkEvent=function(e,t){return u.isUnmodifiedMouseEvent(e)&&!childClicked(e,t)},followVariantSelectors=[],allowDefault=function(){},onAction=function(e,t){var n;return followVariantSelectors.push(e),n=function(e){return up.navigation.withActiveMark(e,{enlarge:!0},function(){return t(e)})},up.on("click","a"+e+", [up-href]"+e,function(e,t){return shouldProcessLinkEvent(e,t)?t.is("[up-instant]")?e.preventDefault():(e.preventDefault(),n(t)):allowDefault(e)}),up.on("mousedown","a"+e+"[up-instant], [up-href]"+e+"[up-instant]",function(e,t){return shouldProcessLinkEvent(e,t)?(e.preventDefault(),n(t)):void 0})},isFollowable=function(e){return u.any(followVariantSelectors,function(t){return e.is(t)})},makeFollowable=function(e){var t;return t=$(e),isFollowable(t)?void 0:t.attr("up-follow","")},onAction("[up-target]",function(e){return follow(e)}),onAction("[up-follow]",function(e){return follow(e)}),up.macro("[up-dash]",{priority:"last"},function(e){var t,n;return n=u.castedAttr(e,"up-dash"),e.removeAttr("up-dash"),t={"up-preload":"","up-instant":""},n===!0?makeFollowable(e):t["up-target"]=n,u.setMissingAttrs(e,t)}),up.macro("[up-expand]",{priority:"last"},function(e){var t,n,r,o,i,a,s,l,c,p;if(t=e.find("a, [up-href]"),(c=e.attr("up-expand"))&&(t=t.filter(c)),i=t.get(0)){for(p=/^up-/,s={},s["up-href"]=$(i).attr("href"),l=i.attributes,r=0,o=l.length;o>r;r++)n=l[r],a=n.name,a.match(p)&&(s[a]=n.value);return u.setMissingAttrs(e,s),e.removeAttr("up-expand"),makeFollowable(e)}}),{knife:eval("undefined"!=typeof Knife&&null!==Knife?Knife.point:void 0),visit:visit,follow:follow,makeFollowable:makeFollowable,shouldProcessLinkEvent:shouldProcessLinkEvent,childClicked:childClicked,followMethod:followMethod,onAction:onAction}}(jQuery),up.visit=up.link.visit,up.follow=up.link.follow}.call(this),function(){var slice=[].slice;up.form=function($){var autosubmit,config,currentValuesForSwitch,observe,observeForm,reset,resolveValidateTarget,submit,switchTargets,u,validate;return u=up.util,config=u.config({validateTargets:["[up-fieldset]:has(&)","fieldset:has(&)","label:has(&)","form:has(&)"],fields:[":input"],observeDelay:0}),reset=function(){return config.reset()},submit=function(e,t){var n,r,o,i,a,s,l;return n=$(e).closest("form"),t=u.options(t),s=u.option(t.target,n.attr("up-target"),"body"),l=u.option(t.url,n.attr("action"),up.browser.url()),t.failTarget=u.option(t.failTarget,n.attr("up-fail-target"))||u.selectorForElement(n),t.history=u.option(t.history,u.castedAttr(n,"up-history"),!0),t.transition=u.option(t.transition,u.castedAttr(n,"up-transition"),"none"),t.failTransition=u.option(t.failTransition,u.castedAttr(n,"up-fail-transition"),"none"),t.method=u.option(t.method,n.attr("up-method"),n.attr("data-method"),n.attr("method"),"post").toUpperCase(),t.headers=u.option(t.headers,{}),t.reveal=u.option(t.reveal,u.castedAttr(n,"up-reveal"),!0),t.cache=u.option(t.cache,u.castedAttr(n,"up-cache")),t.restoreScroll=u.option(t.restoreScroll,u.castedAttr(n,"up-restore-scroll")),t.origin=u.option(t.origin,n),t.data=up.util.requestDataFromForm(n),t=u.merge(t,up.motion.animateOptions(t,n)),i=n.find("input[type=file]").length,r=!i||u.isFormData(t.data),o=up.browser.canPushState()||t.history===!1,t.validate&&(t.headers||(t.headers={}),t.headers["X-Up-Validate"]=t.validate,!r)?u.unresolvablePromise():(up.navigation.markActive(n),r&&o?(a=up.replace(s,l,t),a.always(function(){return up.navigation.unmarkActive(n)}),a):(n.get(0).submit(),u.unresolvablePromise()))},observe=function(){var $element,args,callback,callbackArg,callbackPromise,callbackTimer,changeEvents,check,clearTimer,delay,knownValue,nextCallback,options,rawCallback,runNextCallback,selectorOrElement;return selectorOrElement=arguments[0],args=2<=arguments.length?slice.call(arguments,1):[],options={},callbackArg=void 0,1===args.length&&(callbackArg=args[0]),args.length>1&&(options=u.options(args[0]),callbackArg=args[1]),$element=$(selectorOrElement),options=u.options(options),delay=u.option($element.attr("up-delay"),options.delay,config.observeDelay),delay=parseInt(delay),callback=null,u.isGiven(options.change)&&u.error("up.observe now takes the change callback as the last argument"),rawCallback=u.option(u.presentAttr($element,"up-observe"),callbackArg),callback=u.isString(rawCallback)?function(value,$field){return eval(rawCallback)}:rawCallback||u.error("up.observe: No change callback given"),$element.is("form")?observeForm($element,options,callback):(knownValue=null,callbackTimer=null,callbackPromise=u.resolvedPromise(),nextCallback=null,runNextCallback=function(){var e;return nextCallback?(e=nextCallback(),nextCallback=null,e):void 0},check=function(){var e,t,n;return n=$element.val(),t=u.isNull(knownValue),knownValue===n||(knownValue=n,t)?void 0:(clearTimer(),nextCallback=function(){return callback.apply($element.get(0),[n,$element])},e=function(){return callbackPromise.then(function(){var e;return e=runNextCallback(),callbackPromise=u.isPromise(e)?e:u.resolvedPromise()})},u.setTimer(delay,e))},clearTimer=function(){return clearTimeout(callbackTimer)},changeEvents=up.browser.canInputEvent()?"input change":"input change keypress paste cut click propertychange",$element.on(changeEvents,check),check(),function(){return $element.off(changeEvents,check),clearTimer()})},observeForm=function(e,t,n){var r,o;return r=u.multiSelector(config.fields).find(e),o=u.map(r,function(e){return observe(e,n)}),function(){var e,t,n,r;for(r=[],t=0,n=o.length;n>t;t++)e=o[t],r.push(e());return r}},autosubmit=function(e,t){return observe(e,t,function(e,t){var n;return n=t.closest("form"),up.navigation.withActiveMark(t,function(){return submit(n)})})},resolveValidateTarget=function(e,t){var n;return n=u.option(t.target,e.attr("up-validate")),u.isBlank(n)&&(n||(n=u.detect(config.validateTargets,function(n){var r;return r=up.flow.resolveSelector(n,t.origin),e.closest(r).length}))),u.isBlank(n)&&u.error("Could not find default validation target for %o (tried ancestors %o)",e.get(0),config.validateTargets),u.isString(n)||(n=u.selectorForElement(n)),n},validate=function(e,t){var n,r,o;return n=$(e),t=u.options(t),t.origin=n,t.target=resolveValidateTarget(n,t),t.failTarget=t.target,t.history=!1,t.headers=u.option(t.headers,{}),t.validate=n.attr("name")||"__none__",t=u.merge(t,up.motion.animateOptions(t,n)),r=n.closest("form"),o=up.submit(r,t)},currentValuesForSwitch=function(e){var t,n,r;return r=void 0,e.is("input[type=checkbox]")?r=e.is(":checked")?[":checked",":present",e.val()]:[":unchecked",":blank"]:e.is("input[type=radio]")?(t=e.closest("form, body").find("input[type='radio'][name='"+e.attr("name")+"']:checked"),r=t.length?[":checked",":present",t.val()]:[":unchecked",":blank"]):(n=e.val(),r=u.isPresent(n)?[":present",n]:[":blank"]),r},currentValuesForSwitch=function(e){var t,n,r,o;return e.is("input[type=checkbox]")?e.is(":checked")?(r=e.val(),n=":checked"):n=":unchecked":e.is("input[type=radio]")?(t=e.closest("form, body").find("input[type='radio'][name='"+e.attr("name")+"']:checked"),t.length?(n=":checked",r=t.val()):n=":unchecked"):r=e.val(),o=[],u.isPresent(r)?(o.push(r),o.push(":present")):o.push(":blank"),u.isPresent(n)&&o.push(n),o},switchTargets=function(e,t){var n,r,o;return n=$(e),t=u.options(t),o=u.option(t.target,n.attr("up-switch")),u.isPresent(o)||u.error("No switch target given for %o",n.get(0)),r=currentValuesForSwitch(n),$(o).each(function(){var e,t,n,o;return e=$(this),(t=e.attr("up-hide-for"))?(t=t.split(" "),n=0===u.intersect(r,t).length):(o=(o=e.attr("up-show-for"))?o.split(" "):[":present",":checked"],n=u.intersect(r,o).length>0),e.toggle(n)})},up.on("submit","form[up-target]",function(e,t){return e.preventDefault(),submit(t)}),up.on("change","[up-validate]",function(e,t){return validate(t)}),up.on("change","[up-switch]",function(e,t){return switchTargets(t)}),up.compiler("[up-switch]",function(e){return switchTargets(e)}),up.compiler("[up-observe]",function(e){return observe(e)}),up.compiler("[up-autosubmit]",function(e){return autosubmit(e)}),up.on("up:framework:reset",reset),{knife:eval("undefined"!=typeof Knife&&null!==Knife?Knife.point:void 0),config:config,submit:submit,observe:observe,validate:validate,switchTargets:switchTargets}}(jQuery),up.submit=up.form.submit,up.observe=up.form.observe,up.autosubmit=up.form.autosubmit,up.validate=up.form.validate}.call(this),function(){up.popup=function($){var attach,autoclose,close,config,contains,coveredUrl,createFrame,currentUrl,discardHistory,ensureInViewport,isOpen,reset,setPosition,u;return u=up.util,currentUrl=void 0,coveredUrl=function(){return $(".up-popup").attr("up-covered-url")},config=u.config({openAnimation:"fade-in",closeAnimation:"fade-out",openDuration:null,closeDuration:null,openEasing:null,closeEasing:null,position:"bottom-right",history:!1}),reset=function(){return close({animation:!1}),config.reset()},setPosition=function(e,t){var n,r,o;return o=u.measure(e,{full:!0}),r=function(){switch(t){case"bottom-right":return{right:o.right,top:o.top+o.height};case"bottom-left":return{left:o.left,top:o.top+o.height};case"top-right":return{right:o.right,bottom:o.top};case"top-left":return{left:o.left,bottom:o.top};default:return u.error("Unknown position option '%s'",t)}}(),u.isFixed(e)&&(r.position="fixed"),n=$(".up-popup"),n.attr("up-position",t),n.css(r),ensureInViewport(n)},ensureInViewport=function(e){var t,n,r,o,i,a,s;if(n=u.measure(e,{full:!0}),r=null,o=null,n.right<0&&(r=-n.right),n.bottom<0&&(o=-n.bottom),n.left<0&&(r=n.left),n.top<0&&(o=n.top),r&&((i=parseInt(e.css("left")))?e.css("left",i-r):(a=parseInt(e.css("right")))&&e.css("right",a+r)),o){if(s=parseInt(e.css("top")))return e.css("top",s-o);if(t=parseInt(e.css("bottom")))return e.css("bottom",t+o)}},discardHistory=function(){var e;return e=$(".up-popup"),e.removeAttr("up-covered-url"),e.removeAttr("up-covered-title")},createFrame=function(e,t){var n;return n=u.resolvedPromise(),isOpen()&&(n=n.then(function(){return close()})),n=n.then(function(){var n;return n=u.$createElementFromSelector(".up-popup"),t.sticky&&n.attr("up-sticky",""),n.attr("up-covered-url",up.browser.url()),n.attr("up-covered-title",document.title),u.$createPlaceholder(e,n),n.appendTo(document.body),n})},isOpen=function(){return $(".up-popup").length>0},attach=function(e,t){var n,r,o,i,a;return n=$(e),n.length||u.error("Cannot attach popup to non-existing element %o",e),t=u.options(t),a=u.option(u.pluckKey(t,"url"),n.attr("up-href"),n.attr("href")),o=u.option(u.pluckKey(t,"html")),i=u.option(u.pluckKey(t,"target"),n.attr("up-popup"),"body"),t.position=u.option(t.position,n.attr("up-position"),config.position),t.animation=u.option(t.animation,n.attr("up-animation"),config.openAnimation),t.sticky=u.option(t.sticky,u.castedAttr(n,"up-sticky"),config.sticky),t.history=up.browser.canPushState()?u.option(t.history,u.castedAttr(n,"up-history"),config.history):!1,t.confirm=u.option(t.confirm,n.attr("up-confirm")),r=up.motion.animateOptions(t,n,{duration:config.openDuration,easing:config.openEasing}),up.browser.confirm(t).then(function(){var e,s;return up.bus.nobodyPrevents("up:popup:open",{url:a,message:"Opening popup"})?(t.beforeSwap=function(){return createFrame(i,t)},e=u.merge(t,{animation:!1}),s=o?up.extract(i,o,e):up.replace(i,a,e),s=s.then(function(){return setPosition(n,t.position)}),s=s.then(function(){return up.animate($(".up-popup"),t.animation,r)}),s=s.then(function(){return up.emit("up:popup:opened",{message:"Popup opened"})})):u.unresolvablePromise()})},close=function(e){var t,n,r;return t=$(".up-popup"),t.length?up.bus.nobodyPrevents("up:popup:close",{$element:t})?(e=u.options(e,{animation:config.closeAnimation,url:t.attr("up-covered-url"),title:t.attr("up-covered-title")}),n=up.motion.animateOptions(e,{duration:config.closeDuration,easing:config.closeEasing}),u.extend(e,n),currentUrl=void 0,r=up.destroy(t,e),r=r.then(function(){return up.emit("up:popup:closed",{message:"Popup closed"})})):u.unresolvablePromise():u.resolvedPromise()},autoclose=function(){return $(".up-popup").is("[up-sticky]")?void 0:(discardHistory(),close())},contains=function(e){var t;return t=$(e),t.closest(".up-popup").length>0},up.link.onAction("[up-popup]",function(e){return e.is(".up-current")?close():attach(e)}),up.on("click","body",function(e){var t;return t=$(e.target),t.closest(".up-popup").length||t.closest("[up-popup]").length?void 0:close()}),up.on("up:fragment:inserted",function(e,t){var n;if(contains(t)){if(n=t.attr("up-source"))return currentUrl=n}else if(contains(e.origin))return autoclose()}),up.bus.onEscape(function(){return close()}),up.on("click","[up-close]",function(e,t){return t.closest(".up-popup").length?(close(),e.preventDefault()):void 0}),up.on("up:framework:reset",reset),{knife:eval("undefined"!=typeof Knife&&null!==Knife?Knife.point:void 0),attach:attach,close:close,url:function(){return currentUrl},coveredUrl:coveredUrl,config:config,defaults:function(){return u.error("up.popup.defaults(...) no longer exists. Set values on he up.popup.config property instead.")},contains:contains,open:function(){return up.error("up.popup.open no longer exists. Please use up.popup.attach instead.")},source:function(){return up.error("up.popup.source no longer exists. Please use up.popup.url instead.")
3
- },isOpen:isOpen}}(jQuery)}.call(this),function(){up.modal=function($){var animate,autoclose,close,config,contains,coveredUrl,createFrame,currentFlavor,currentUrl,discardHistory,extract,flavor,flavorDefault,flavorOverrides,follow,isOpen,markAsAnimating,open,reset,shiftElements,templateHtml,u,unshiftElements,unshifters,visit;return u=up.util,config=u.config({maxWidth:null,minWidth:null,width:null,height:null,history:!0,openAnimation:"fade-in",closeAnimation:"fade-out",openDuration:null,closeDuration:null,openEasing:null,closeEasing:null,backdropOpenAnimation:"fade-in",backdropCloseAnimation:"fade-out",closeLabel:"\xd7",flavors:{"default":{}},template:function(){return'<div class="up-modal">\n <div class="up-modal-backdrop"></div>\n <div class="up-modal-viewport">\n <div class="up-modal-dialog">\n <div class="up-modal-content"></div>\n <div class="up-modal-close" up-close>'+flavorDefault("closeLabel")+"</div>\n </div>\n </div>\n</div>"}}),currentUrl=void 0,currentFlavor=void 0,coveredUrl=function(){return $(".up-modal").attr("up-covered-url")},reset=function(){return close({animation:!1}),currentUrl=void 0,currentFlavor=void 0,config.reset()},templateHtml=function(){var e;return e=flavorDefault("template"),u.isFunction(e)?e(config):e},discardHistory=function(){var e;return e=$(".up-modal"),e.removeAttr("up-covered-url"),e.removeAttr("up-covered-title")},createFrame=function(e,t){var n;return n=u.resolvedPromise(),isOpen()&&(n=n.then(function(){return close()})),n=n.then(function(){var n,r,o;return currentFlavor=t.flavor,o=$(templateHtml()),o.attr("up-flavor",currentFlavor),t.sticky&&o.attr("up-sticky",""),o.attr("up-covered-url",up.browser.url()),o.attr("up-covered-title",document.title),r=o.find(".up-modal-dialog"),u.isPresent(t.width)&&r.css("width",t.width),u.isPresent(t.maxWidth)&&r.css("max-width",t.maxWidth),u.isPresent(t.height)&&r.css("height",t.height),n=o.find(".up-modal-content"),u.$createPlaceholder(e,n),o.appendTo(document.body)})},unshifters=[],shiftElements=function(){var e,t,n,r,o;if(!(unshifters.length>0))return u.documentHasVerticalScrollbar()?(e=$("body"),r=u.scrollbarWidth(),t=parseInt(e.css("padding-right")),n=r+t,o=u.temporaryCss(e,{"padding-right":n+"px","overflow-y":"hidden"}),unshifters.push(o),up.layout.anchoredRight().each(function(){var e,t,n,o;return e=$(this),t=parseInt(e.css("right")),n=r+t,o=u.temporaryCss(e,{right:n}),unshifters.push(o)})):void 0},unshiftElements=function(){var e,t;for(e=[];t=unshifters.pop();)e.push(t());return e},isOpen=function(){return $(".up-modal").length>0},follow=function(e,t){return t=u.options(t),t.$link=$(e),open(t)},visit=function(e,t){return t=u.options(t),t.url=e,open(t)},extract=function(e,t,n){return n=u.options(n),n.html=t,n.history=u.option(n.history,!1),n.target=e,open(n)},open=function(e){var t,n,r,o,i;return e=u.options(e),t=u.option(u.pluckKey(e,"$link"),u.nullJQuery()),i=u.option(u.pluckKey(e,"url"),t.attr("up-href"),t.attr("href")),r=u.option(u.pluckKey(e,"html")),o=u.option(u.pluckKey(e,"target"),t.attr("up-modal"),"body"),e.flavor=u.option(e.flavor,t.attr("up-flavor")),e.width=u.option(e.width,t.attr("up-width"),flavorDefault("width",e.flavor)),e.maxWidth=u.option(e.maxWidth,t.attr("up-max-width"),flavorDefault("maxWidth",e.flavor)),e.height=u.option(e.height,t.attr("up-height"),flavorDefault("height")),e.animation=u.option(e.animation,t.attr("up-animation"),flavorDefault("openAnimation",e.flavor)),e.backdropAnimation=u.option(e.backdropAnimation,t.attr("up-backdrop-animation"),flavorDefault("backdropOpenAnimation",e.flavor)),e.sticky=u.option(e.sticky,u.castedAttr(t,"up-sticky"),flavorDefault("sticky",e.flavor)),e.confirm=u.option(e.confirm,t.attr("up-confirm")),n=up.motion.animateOptions(e,t,{duration:flavorDefault("openDuration",e.flavor),easing:flavorDefault("openEasing",e.flavor)}),e.history=u.option(e.history,u.castedAttr(t,"up-history"),flavorDefault("history",e.flavor)),up.browser.canPushState()||(e.history=!1),up.browser.confirm(e).then(function(){var t,a;return up.bus.nobodyPrevents("up:modal:open",{url:i,message:"Opening modal"})?(e.beforeSwap=function(){return createFrame(o,e)},t=u.merge(e,{animation:!1}),a=r?up.extract(o,r,t):up.replace(o,i,t),a=a.then(function(){return shiftElements()}),a=a.then(function(){return animate(e.animation,e.backdropAnimation,n)}),a=a.then(function(){return up.emit("up:modal:opened",{message:"Modal opened"})})):u.unresolvablePromise()})},close=function(e){var t,n,r,o,i;return e=u.options(e),t=$(".up-modal"),t.length?up.bus.nobodyPrevents("up:modal:close",{$element:t,message:"Closing modal"})?(i=u.option(e.animation,flavorDefault("closeAnimation")),r=u.option(e.backdropAnimation,flavorDefault("backdropCloseAnimation")),n=up.motion.animateOptions(e,{duration:flavorDefault("closeDuration"),easing:flavorDefault("closeEasing")}),o=u.resolvedPromise(),o=o.then(function(){return animate(i,r,n)}),o=o.then(function(){var n;return n=u.options(u.except(e,"animation","duration","easing","delay"),{url:t.attr("up-covered-url"),title:t.attr("up-covered-title")}),currentUrl=void 0,up.destroy(t,n)}),o=o.then(function(){return unshiftElements(),currentFlavor=void 0,up.emit("up:modal:closed",{message:"Modal closed"})})):u.unresolvablePromise():u.resolvedPromise()},markAsAnimating=function(e){return null==e&&(e=!0),$(".up-modal").toggleClass("up-modal-animating",e)},animate=function(e,t,n){var r;return up.motion.isNone(e)?u.resolvedPromise():(markAsAnimating(),r=$.when(up.animate($(".up-modal-viewport"),e,n),up.animate($(".up-modal-backdrop"),t,n)),r=r.then(function(){return markAsAnimating(!1)}))},autoclose=function(){return $(".up-modal").is("[up-sticky]")?void 0:(discardHistory(),close())},contains=function(e){var t;return t=$(e),t.closest(".up-modal").length>0},flavor=function(e,t){return null==t&&(t={}),u.extend(flavorOverrides(e),t)},flavorOverrides=function(e){var t;return(t=config.flavors)[e]||(t[e]={})},flavorDefault=function(e,t){var n;return null==t&&(t=currentFlavor),t&&(n=flavorOverrides(t)[e]),u.isMissing(n)&&(n=config[e]),n},up.link.onAction("[up-modal]",function(e){return follow(e)}),up.on("click","body",function(e){var t;return t=$(e.target),t.closest(".up-modal-dialog").length||t.closest("[up-modal]").length?void 0:close()}),up.on("up:fragment:inserted",function(e,t){var n;if(contains(t)){if(n=t.attr("up-source"))return currentUrl=n}else if(!up.popup.contains(t)&&contains(e.origin))return autoclose()}),up.bus.onEscape(function(){return close()}),up.on("click","[up-close]",function(e,t){return t.closest(".up-modal").length?(close(),e.preventDefault()):void 0}),up.on("up:framework:reset",reset),{knife:eval("undefined"!=typeof Knife&&null!==Knife?Knife.point:void 0),visit:visit,follow:follow,extract:extract,open:function(){return up.error("up.modal.open no longer exists. Please use either up.modal.follow or up.modal.visit.")},close:close,url:function(){return currentUrl},coveredUrl:coveredUrl,config:config,defaults:function(){return u.error("up.modal.defaults(...) no longer exists. Set values on he up.modal.config property instead.")},contains:contains,source:function(){return up.error("up.modal.source no longer exists. Please use up.popup.url instead.")},isOpen:isOpen,flavor:flavor}}(jQuery)}.call(this),function(){up.tooltip=function(e){var t,n,r,o,u,i,a;return a=up.util,r=a.config({position:"top",openAnimation:"fade-in",closeAnimation:"fade-out"}),u=function(){return n({animation:!1}),r.reset()},i=function(e,t,n){var r,o,u;return o=a.measure(e),u=a.measure(t),r=function(){switch(n){case"top":return{left:o.left+.5*(o.width-u.width),top:o.top-u.height};case"left":return{left:o.left-u.width,top:o.top+.5*(o.height-u.height)};case"right":return{left:o.left+o.width,top:o.top+.5*(o.height-u.height)};case"bottom":return{left:o.left+.5*(o.width-u.width),top:o.top+o.height};default:return a.error("Unknown position option '%s'",n)}}(),t.attr("up-position",n),t.css(r)},o=function(e){var t;return t=a.$createElementFromSelector(".up-tooltip"),a.isGiven(e.text)?t.text(e.text):t.html(e.html),t.appendTo(document.body),t},t=function(t,u){var s,l,c,p,f,d,m;return null==u&&(u={}),s=e(t),f=a.option(u.html,s.attr("up-tooltip-html")),m=a.option(u.text,s.attr("up-tooltip")),d=a.option(u.position,s.attr("up-position"),r.position),p=a.option(u.animation,a.castedAttr(s,"up-animation"),r.openAnimation),c=up.motion.animateOptions(u,s),n(),l=o({text:m,html:f}),i(s,l,d),up.animate(l,p,c)},n=function(t){var n;return n=e(".up-tooltip"),n.length?(t=a.options(t,{animation:r.closeAnimation}),t=a.merge(t,up.motion.animateOptions(t)),up.destroy(n,t)):void 0},up.compiler("[up-tooltip], [up-tooltip-html]",function(e){return e.on("mouseenter",function(){return t(e)}),e.on("mouseleave",function(){return n()})}),up.on("click","body",function(){return n()}),up.on("up:framework:reset",n),up.bus.onEscape(function(){return n()}),up.on("up:framework:reset",u),{attach:t,close:n,open:function(){return a.error("up.tooltip.open no longer exists. Use up.tooltip.attach instead.")}}}(jQuery)}.call(this),function(){var e=[].slice;up.navigation=function(t){var n,r,o,u,i,a,s,l,c,p,f,d,m,h;return f=up.util,o=f.config({currentClasses:["up-current"]}),c=function(){return o.reset()},u=function(){var e;return e=o.currentClasses,e=e.concat(["up-current"]),e=f.uniq(e),e.join(" ")},n="up-active",r="a, [up-href]",l=function(e){return f.isPresent(e)?f.normalizeUrl(e,{search:!1,stripTrailingSlash:!0}):void 0},p=function(e){var t,n,r,o,u,i,a,s,c,p;for(s=[],i=["href","up-href","up-alias"],n=0,o=i.length;o>n;n++)if(t=i[n],c=f.presentAttr(e,t))for(p="up-alias"===t?c.split(" "):[c],r=0,u=p.length;u>r;r++)a=p[r],"#"!==a&&(a=l(a),s.push(a));return s},m=function(e){var t,n,r,o;return e=f.compact(e),r=function(e){return"*"===e.substr(-1)?n(e.slice(0,-1)):t(e)},t=function(t){return f.contains(e,t)},n=function(t){return f.detect(e,function(e){return 0===e.indexOf(t)})},o=function(e){return f.detect(e,r)},{matchesAny:o}},a=function(){var e,n;return e=m([l(up.browser.url()),l(up.modal.url()),l(up.modal.coveredUrl()),l(up.popup.url()),l(up.popup.coveredUrl())]),n=u(),f.each(t(r),function(r){var o,u;return o=t(r),u=p(o),e.matchesAny(u)?o.addClass(n):o.hasClass(n)&&0===o.closest(".up-destroying").length?o.removeClass(n):void 0})},i=function(e,n){var o;return o=t(e),n=f.options(n,{enlarge:!1}),n.enlarge?f.presence(o.parent(r))||o:o},s=function(e,t){var r;return r=i(e,t),r.addClass(n)},d=function(e,t){var r;return r=i(e,t),r.removeClass(n)},h=function(){var n,r,o,u,i,a;return u=arguments[0],r=2<=arguments.length?e.call(arguments,1):[],o=r.pop(),i=f.options(r.pop()),n=t(u),s(n,i),a=o(),f.isPromise(a)?a.always(function(){return d(n,i)}):up.warn("Expected block to return a promise, but got %o",a),a},up.on("up:fragment:inserted",function(){return a()}),up.on("up:fragment:destroyed",function(e,t){return t.is(".up-modal, .up-popup")?a():void 0}),up.on("up:framework:reset",c),{config:o,defaults:function(){return f.error("up.navigation.defaults(...) no longer exists. Set values on he up.navigation.config property instead.")},markActive:s,unmarkActive:d,withActiveMark:h}}(jQuery)}.call(this),function(){up.rails=function(e){var t,n,r,o;return r=up.util,o=function(e){return e.is("[up-follow], [up-target], [up-modal], [up-popup]")},n=function(){return r.isGiven(e.rails)},r.each(["method","confirm"],function(e){var t,u;return t="data-"+e,u="up-"+e,up.compiler("["+t+"]",function(e){var i;return n()&&o(e)?(i={},i[u]=e.attr(t),r.setMissingAttrs(e,i),e.removeAttr(t)):void 0})}),t=function(){return n()?{name:e.rails.csrfParam(),value:e.rails.csrfToken()}:void 0},{csrfField:t,isRails:n}}(jQuery)}.call(this),function(){up.boot()}.call(this);
1
+ (function(){window.up={version:"0.26.2"}}).call(this),function(){var e=[].slice;up.util=function(t){var n,r,o,u,i,a,s,l,c,p,f,d,m,v,h,g,y,b,w,k,S,x,D,P,$,A,E,T,C,F,O,U,R,_,M,j,K,L,N,I,W,z,q,H,Q,V,J,B,X,G,Y,Z,et,tt,nt,rt,ot,ut,it,at,st,lt,ct,pt,ft,dt,mt,vt,ht,gt,yt,bt,wt,kt,St,xt,Dt,Pt,$t,At,Et,Tt,Ct,Ft,Ot,Ut,Rt,_t,Mt,jt,Kt,Lt,Nt,It,Wt,zt,qt,Ht,Qt,Vt,Jt,Bt,Xt,Gt,Yt,Zt;return vt=t.noop,lt=function(t){var n,r;return n=void 0,r=!1,function(){var o;return o=1<=arguments.length?e.call(arguments,0):[],r?n:(r=!0,n=t.apply(null,o))}},et=function(e,t){return t=t.toString(),(""===t||"80"===t)&&"http:"===e||"443"===t&&"https:"===e},gt=function(e,t){var n,r,o;return n=Pt(e),r=n.protocol+"//"+n.hostname,et(n.protocol,n.port)||(r+=":"+n.port),o=n.pathname,"/"!==o[0]&&(o="/"+o),(null!=t?t.stripTrailingSlash:void 0)===!0&&(o=o.replace(/\/$/,"")),r+=o,(null!=t?t.hash:void 0)===!0&&(r+=n.hash),(null!=t?t.search:void 0)!==!1&&(r+=n.search),r},Pt=function(e){var n;return n=null,tt(e)?(n=t("<a>").attr({href:e}).get(0),j(n.hostname)&&(n.href=n.href)):n=Jt(e),n},ht=function(e){return e?e.toUpperCase():"GET"},n=function(e){var n,r,o,u,i,a,s,l,c,p,f,d,m,v,h,g;for(h=e.split(/[ >]/),o=null,f=c=0,m=h.length;m>c;f=++c){for(a=h[f],i=a.match(/(^|\.|\#)[A-Za-z0-9\-_]+/g),g="div",u=[],p=null,d=0,v=i.length;v>d;d++)switch(s=i[d],s[0]){case".":u.push(s.substr(1));break;case"#":p=s.substr(1);break;default:g=s}l="<"+g,u.length&&(l+=' class="'+u.join(" ")+'"'),p&&(l+=' id="'+p+'"'),l+=">",n=t(l),r&&n.appendTo(r),0===f&&(o=n),r=n}return o},g=function(e,t){var n;return n=document.createElement(e),Y(t)&&(n.innerHTML=t),n},r=function(e,t){var r;return null==t&&(t=document.body),r=n(e),r.addClass("up-placeholder"),r.appendTo(t),r},Nt=function(e){var n,r,o,u,i,a,s,l,c;if(n=t(e),l=void 0,up.puts("Creating selector from element %o",n.get(0)),c=Et(n.attr("up-id")))l="[up-id='"+c+"']";else if(u=Et(n.attr("id")))l="#"+u;else if(s=Et(n.attr("name")))l="[name='"+s+"']";else if(r=Et(mt(n)))for(l="",o=0,a=r.length;a>o;o++)i=r[o],l+="."+i;else l=n.prop("tagName").toLowerCase();return l},mt=function(e){var t,n;return t=e.attr("class")||"",n=t.split(" "),Lt(n,function(e){return Y(e)&&!e.match(/^up-/)})},y=function(e){var t,n,r,o,u,i,a,s,l,c,p,f;return l=function(e){return"<"+e+"(?: [^>]*)?>"},i=function(e){return"</"+e+">"},t="(?:.|\\n)*?",u=function(e){return"("+e+")"},f=new RegExp(l("head")+t+l("title")+u(t)+i("title")+t+i("body"),"i"),o=new RegExp(l("body")+u(t)+i("body"),"i"),(r=e.match(o))?(s=document.createElement("html"),n=g("body",r[1]),s.appendChild(n),(p=e.match(f))&&(a=g("head"),s.appendChild(a),c=g("title",p[1]),a.appendChild(c)),s):g("div",e)},A=t.extend,Vt=t.trim,S=function(e,t){var n,r,o,u,i;for(i=[],r=n=0,u=e.length;u>n;r=++n)o=e[r],i.push(t(o,r));return i},at=S,qt=function(e,t){var n,r,o,u;for(u=[],r=n=0,o=e-1;o>=0?o>=n:n>=o;r=o>=0?++n:--n)u.push(t(r));return u},B=function(e){return null===e},nt=function(e){return void 0===e},L=function(e){return!nt(e)},J=function(e){return nt(e)||B(e)},H=function(e){return!J(e)},j=function(e){return J(e)||G(e)&&0===Object.keys(e).length||0===e.length},Et=function(e,t){return null==t&&(t=Y),t(e)?e:void 0},Y=function(e){return!j(e)},q=function(e){return"function"==typeof e},tt=function(e){return"string"==typeof e},X=function(e){return"number"==typeof e},Q=function(e){return"object"==typeof e&&!!e},G=function(e){return Q(e)||"function"==typeof e},I=function(e){return!(!e||1!==e.nodeType)},V=function(e){return e instanceof jQuery},Z=function(e){return G(e)&&q(e.then)},K=function(e){return Z(e)&&q(e.resolve)},M=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)},z=function(e){return up.browser.canFormData()&&e instanceof FormData},Qt=function(e){return Array.prototype.slice.call(e)},v=function(e){return M(e)?e.slice():A({},e)},Jt=function(e){return V(e)?e.get(0):e},ct=function(){var t;return t=1<=arguments.length?e.call(arguments,0):[],A.apply(null,[{}].concat(e.call(t)))},Dt=function(e,t){var n,r,o,u;if(o=e?v(e):{},t)for(r in t)n=t[r],u=o[r],H(u)?G(n)&&G(u)&&(o[r]=Dt(u,n)):o[r]=n;return o},xt=function(){var t;return t=1<=arguments.length?e.call(arguments,0):[],w(t,H)},w=function(e,t){var n,r,o,u;for(u=void 0,r=0,o=e.length;o>r;r++)if(n=e[r],t(n)){u=n;break}return u},a=function(e,t){var n,r,o,u;for(u=!1,r=0,o=e.length;o>r;r++)if(n=e[r],t(n)){u=!0;break}return u},i=function(e,t){var n,r,o,u;for(u=!0,r=0,o=e.length;o>r;r++)if(n=e[r],!t(n)){u=!1;break}return u},f=function(e){return Lt(e,H)},Bt=function(e){var t;return t={},Lt(e,function(e){return t.hasOwnProperty(e)?!1:t[e]=!0})},Lt=function(e,t){var n;return n=[],S(e,function(e){return t(e)?n.push(e):void 0}),n},Ct=function(e,t){return Lt(e,function(e){return!t(e)})},_=function(e,t){return Lt(e,function(e){return m(t,e)})},Tt=function(){var t,n,r,o;return t=arguments[0],r=2<=arguments.length?e.call(arguments,1):[],o=function(){var e,o,u;for(u=[],e=0,o=r.length;o>e;e++)n=r[e],u.push(t.attr(n));return u}(),w(o,Y)},Wt=function(e,t){return e>0?setTimeout(t,e):t()},dt=function(e){return setTimeout(e,0)},ut=function(e){return e[e.length-1]},p=function(){var e;return e=document.documentElement,{width:e.clientWidth,height:e.clientHeight}},Kt=lt(function(){var e,n,r;return e=t("<div>").css({position:"absolute",top:"0",left:"0",width:"50px",height:"50px",overflowY:"scroll"}),e.appendTo(document.body),n=e.get(0),r=n.offsetWidth-n.clientWidth,e.remove(),r}),k=function(){var e,n,r,o,u,i;return n=document.body,e=t(n),i=document.documentElement,r=e.css("overflow-y"),u="scroll"===r,o="hidden"===r,u||!o&&i.scrollHeight>i.clientHeight},wt=function(t){var n;return n=void 0,function(){var r;return r=1<=arguments.length?e.call(arguments,0):[],null!=t&&(n=t.apply(null,r)),t=void 0,n}},zt=function(e,n,r){var o,u,i;return o=t(e),i=o.css(Object.keys(n)),o.css(n),u=function(){return o.css(i)},r?(r(),u()):wt(u)},O=function(e){var t,n;return n=e.css(["transform","-webkit-transform"]),j(n)||"none"===n.transform?(t=function(){return e.css(n)},e.css({transform:"translateZ(0)","-webkit-transform":"translateZ(0)"})):t=function(){},t},U=function(e){return e=Jt(e),e.offsetHeight},b=function(e,n,r){var u,i,a,s,l,c,p,f;return u=t(e),r=Dt(r,{duration:300,delay:0,easing:"ease"}),i=t.Deferred(),p=Object.keys(n),l={"transition-property":p.join(", "),"transition-duration":r.duration+"ms","transition-delay":r.delay+"ms","transition-timing-function":r.easing},a=u.css(Object.keys(l)),u.addClass("up-animating"),c=function(){return u.removeClass("up-animating"),u.off("transitionend",s)},s=function(e){var t;return t=e.originalEvent.propertyName,m(p,t)?(i.resolve(),c()):void 0},u.on("transitionend",s),i.then(c),f=O(u),u.css(l),u.css(n),u.data(o,i),i.then(function(){var e;return u.removeData(o),f(),u.css({transition:"none"}),e=!("none"===a["transition-property"]||"all"===a["transition-property"]&&"0"===a["transition-duration"][0]),e?(U(u),u.css(a)):void 0}),i},o="up-animation-deferred",C=function(e){return t(e).each(function(){var e;return(e=$t(this,o))?e.resolve():void 0})},st=function(e,n){var r,o,u,i,a;return n=Dt(n,{relative:!1,inner:!1}),n.relative?n.relative===!0?i=e.position():(r=t(n.relative),a=e.offset(),r.is(document)?i=a:(u=r.offset(),i={left:a.left-u.left,top:a.top-u.top})):i=e.offset(),o={left:i.left,top:i.top},n.inner?(o.width=e.width(),o.height=e.height()):(o.width=e.outerWidth(),o.height=e.outerHeight()),o},h=function(e,t){var n,r,o,u,i;for(u=e.get(0).attributes,i=[],r=0,o=u.length;o>r;r++)n=u[r],i.push(n.specified?t.attr(n.name,n.value):void 0);return i},T=function(e,t){return e.find(t).addBack(t)},P=function(e){return 27===e.keyCode},m=function(e,t){return e.indexOf(t)>=0},c=function(e,t){var n;switch(n=e.attr(t)){case"false":return!1;case"true":return!0;case"":return!0;default:return n}},it=function(e){return e.getResponseHeader("X-Up-Location")},Ht=function(e){return e.getResponseHeader("X-Up-Title")},pt=function(e){return e.getResponseHeader("X-Up-Method")},kt=function(){var t,n,r,o,u,i;for(o=arguments[0],u=2<=arguments.length?e.call(arguments,1):[],t={},n=0,r=u.length;r>n;n++)i=u[n],o.hasOwnProperty(i)&&(t[i]=o[i]);return t},$=function(){var t,n,r,o,u,i;for(o=arguments[0],u=2<=arguments.length?e.call(arguments,1):[],t=v(o),n=0,r=u.length;r>n;n++)i=u[n],delete t[i];return t},rt=function(e){return!(e.metaKey||e.shiftKey||e.ctrlKey)},ot=function(e){var t;return t=nt(e.button)||0===e.button,t&&rt(e)},Mt=function(){var e;return e=t.Deferred(),e.resolve(),e},jt=function(){return Mt().promise()},Xt=function(){return t.Deferred()},Gt=function(){return Xt().promise()},yt=function(){return t()},_t=function(){var n,r;return n=1<=arguments.length?e.call(arguments,0):[],r=t.when.apply(t,[Mt()].concat(e.call(n))),r.resolve=lt(function(){return S(n,function(e){return e.resolve()})}),r},It=function(e,t){var n,r,o;r=[];for(n in t)o=t[n],r.push(J(e.attr(n))?e.attr(n,o):void 0);return r},Ft=function(e,t){var n;return n=e.indexOf(t),n>=0?(e.splice(n,1),t):void 0},ft=function(e){var n,r,o,u,i,s,l;for(i={},l=[],r=[],o=0,u=e.length;u>o;o++)s=e[o],tt(s)?l.push(s):r.push(s);return i.parsed=r,l.length&&(n=l.join(", "),i.parsed.push(n)),i.select=function(){return i.find(void 0)},i.find=function(e){var n,r,o,u,a,s;for(r=yt(),a=i.parsed,o=0,u=a.length;u>o;o++)s=a[o],n=e?e.find(s):t(s),r=r.add(n);return r},i.findWithSelf=function(e){var t;return t=i.find(e),i.doesMatch(e)&&(t=t.add(e)),t},i.doesMatch=function(e){var n;return n=t(e),a(i.parsed,function(e){return n.is(e)})},i.seekUp=function(e){var n,r,o;for(o=t(e),n=o,r=void 0;n.length;){if(i.doesMatch(n)){r=n;break}n=n.parent()}return r||yt()},i},l=function(t){var n,r,o,u,i,a,s,l,c,p,f,d,m,h,g;return null==t&&(t={}),h=void 0,d=function(e){return function(){var n;return n=t[e],X(n)?n:q(n)?n():void 0}},p=d("size"),o=d("expiry"),f=function(e){return t.key?t.key(e):e.toString()},i=function(){return 0!==p()&&0!==o()},r=function(){return h={}},r(),l=function(){var n;return n=1<=arguments.length?e.call(arguments,0):[],t.logPrefix?(n[0]="["+t.logPrefix+"] "+n[0],up.puts.apply(up,n)):void 0},s=function(){return Object.keys(h)},c=function(){var e,t,n,r;return r=v(s()),e=p(),e&&r.length>=e&&(t=null,n=null,S(r,function(e){var r,o;return r=h[e],o=r.timestamp,!n||n>o?(t=e,n=o):void 0}),t)?delete h[t]:void 0},n=function(e,t){var n;return n=u(e,{silent:!0}),L(n)?m(t,n):void 0},g=function(){return(new Date).valueOf()},m=function(e,t){var n;return i()?(c(),n=f(e),h[n]={timestamp:g(),value:t}):void 0},Ft=function(e){var t;return t=f(e),delete h[t]},a=function(e){var t,n;return t=o(),t?(n=g()-e.timestamp,t>n):!0},u=function(e,t){var n,r;return null==t&&(t={}),r=f(e),(n=h[r])?a(n)?(t.silent||l("Cache hit for '%s'",e),n.value):(t.silent||l("Discarding stale cache entry for '%s'",e),void Ft(e)):void(t.silent||l("Cache miss for '%s'",e))},{alias:n,get:u,set:m,remove:Ft,clear:r,keys:s}},d=function(e){var t;return null==e&&(e={}),t={},t.reset=function(){return A(t,e)},t.reset(),Object.preventExtensions(t),t},Yt=function(e){var t,n;return e=Jt(e),t=e.parentNode,n=Qt(e.childNodes),S(n,function(n){return t.insertBefore(n,e)}),t.removeChild(e)},bt=function(e){var t,n;for(t=void 0;(e=e.parent())&&e.length;)if(n=e.css("position"),"absolute"===n||"relative"===n||e.is("body")){t=e;break}return t},W=function(e){var n,r;for(n=t(e);;){if(r=n.css("position"),"fixed"===r)return!0;if(n=n.parent(),0===n.length||n.is(document))return!1}},F=function(e,n){var r,o,u,i;return r=t(e),o=bt(r),u=r.position(),i=o.offset(),r.css({position:"absolute",left:u.left-i.left,top:u.top-i.top+n.scrollTop(),right:"",bottom:""})},Ot=function(e){var t,n,r,o,u,i,a;if(z(e))return up.error("Cannot convert FormData into an array");for(i=Ut(e),t=[],a=i.split("&"),n=0,r=a.length;r>n;n++)u=a[n],Y(u)&&(o=u.split("="),t.push({name:decodeURIComponent(o[0]),value:decodeURIComponent(o[1])}));return t},Ut=function(e){var n;return z(e)?up.error("Cannot convert FormData into a query string"):Y(e)?(n=t.param(e),n=n.replace(/\+/g,"%20")):""},Rt=function(e){var n,r;return n=t(e),r=n.find("input[type=file]").length,r&&up.browser.canFormData()?new FormData(n.get(0)):n.serializeArray()},s=function(e,t,n){var r;return z(e)?e.append(t,n):M(e)?e.push({name:t,value:n}):G(e)?e[t]=n:(tt(e)||J(e))&&(r=Ut([{name:t,value:n}]),e=Y(e)?[e,r].join("&"):r),e},x=function(){var n,r,o,u;throw n=1<=arguments.length?e.call(arguments,0):[],(o=up.log).error.apply(o,n),Zt().then(function(){var r,o,u,i;return r=Et(t(".up-error"))||t('<div class="up-error"></div>').prependTo("body"),u=function(e){return"<span class='up-error-variable'>"+D(e)+"</span>"},o=(i=up.browser).sprintfWithFormattedArgs.apply(i,[u].concat(e.call(n))),r.html(o)}),r=(u=up.browser).sprintf.apply(u,n),new Error(r)},u={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;"},D=function(e){return e.replace(/[&<>"]/g,function(e){return u[e]})},At=function(e,t){var n;return n=e[t],delete e[t],n},$t=function(e,n){var r,o;return r=t(e),o=r.data(n),r.removeData(n),o},E=function(e){var t;return t=ut(e),Q(t)&&!V(t)?e.pop():{}},St=function(e){var n;return n=t(e).css("opacity"),H(n)?parseFloat(n):void 0},Zt=lt(function(){var e;return t.isReady?jt():(e=t.Deferred(),t(function(){return e.resolve()}),e.promise())}),R=function(e){return e},N=function(e){return e=Jt(e),!jQuery.contains(document.documentElement,e)},{isDetached:N,requestDataAsArray:Ot,requestDataAsQuery:Ut,appendRequestData:s,requestDataFromForm:Rt,offsetParent:bt,fixedToAbsolute:F,isFixed:W,presentAttr:Tt,createElement:g,parseUrl:Pt,normalizeUrl:gt,normalizeMethod:ht,createElementFromHtml:y,$createElementFromSelector:n,$createPlaceholder:r,selectorForElement:Nt,extend:A,copy:v,merge:ct,options:Dt,option:xt,error:x,each:S,map:at,times:qt,any:a,all:i,detect:w,select:Lt,reject:Ct,intersect:_,compact:f,uniq:Bt,last:ut,isNull:B,isDefined:L,isUndefined:nt,isGiven:H,isMissing:J,isPresent:Y,isBlank:j,presence:Et,isObject:G,isFunction:q,isString:tt,isNumber:X,isElement:I,isJQuery:V,isPromise:Z,isDeferred:K,isHash:Q,isArray:M,isFormData:z,isUnmodifiedKeyEvent:rt,isUnmodifiedMouseEvent:ot,nullJQuery:yt,unJQuery:Jt,setTimer:Wt,nextFrame:dt,measure:st,temporaryCss:zt,cssAnimate:b,finishCssAnimate:C,forceCompositing:O,forceRepaint:U,escapePressed:P,copyAttributes:h,findWithSelf:T,contains:m,toArray:Qt,castedAttr:c,locationFromXhr:it,titleFromXhr:Ht,methodFromXhr:pt,clientSize:p,only:kt,except:$,trim:Vt,unresolvableDeferred:Xt,unresolvablePromise:Gt,resolvedPromise:jt,resolvedDeferred:Mt,resolvableWhen:_t,setMissingAttrs:It,remove:Ft,memoize:lt,scrollbarWidth:Kt,documentHasVerticalScrollbar:k,config:d,cache:l,unwrapElement:Yt,multiSelector:ft,error:x,pluckData:$t,pluckKey:At,extractOptions:E,isDetached:N,noop:vt,opacity:St,whenReady:Zt,identity:R,escapeHtml:D}}($),up.error=up.util.error}.call(this),function(){var e=[].slice;up.browser=function(t){var n,r,o,u,i,a,s,l,c,p,f,d,m,v,h,g,y,b,w,k,S;return k=up.util,v=function(e,n){var r,o,u,i,a;return null==n&&(n={}),i=k.option(n.method,"get").toLowerCase(),"get"===i?(a=k.requestDataAsQuery(n.data),a&&(e=e+"?"+a),location.href=e):(r=t("<form method='post' action='"+e+"'></form>"),o=function(e){var n;return n=t('<input type="hidden">'),n.attr(e.name,e.value),n.appendTo(r)},o({name:up.proxy.config.wrapMethodParam,value:i}),(u=up.rails.csrfField())&&o(u),k.each(k.requestDataAsArray(n.data),o),r.hide().appendTo("body"),r.submit())},g=function(){var t,n,r;return r=arguments[0],t=2<=arguments.length?e.call(arguments,1):[],k.isDefined(console[r])||(r="log"),i()?"function"==typeof console[r]?console[r].apply(console,t):void 0:(n=y.apply(null,t),"function"==typeof console[r]?console[r](n):void 0)},n=/\%[odisf]/g,w=function(e){var n,r,o,u,i,a,s,l,c;if(a=100,o="",k.isString(e))l=e.replace(/[\n\r\t ]+/g," "),l=l.replace(/^[\n\r\t ]+/,""),l=l.replace(/[\n\r\t ]$/,""),l='"'+l+'"',o='"';else if(k.isUndefined(e))l="undefined";else if(k.isNumber(e)||k.isFunction(e))l=e.toString();else if(k.isArray(e))l="["+k.map(e,w).join(", ")+"]",o="]";else if(k.isJQuery(e))l="$("+k.map(e,w).join(", ")+")",o=")";else if(k.isElement(e)){for(n=t(e),l="<"+e.tagName.toLowerCase(),s=["id","name","class"],u=0,i=s.length;i>u;u++)r=s[u],(c=n.attr(r))&&(l+=" "+r+'="'+c+'"');l+=">",o=">"}else l=JSON.stringify(e);return l.length>a&&(l=l.substr(0,a)+" \u2026",l+=o),l},y=function(){var t,n;return n=arguments[0],t=2<=arguments.length?e.call(arguments,1):[],b.apply(null,[k.identity,n].concat(e.call(t)))},b=function(){var t,r,o,u;return r=arguments[0],u=arguments[1],t=3<=arguments.length?e.call(arguments,2):[],o=0,u.replace(n,function(){var e;return e=t[o],e=r(w(e)),o+=1,e})},S=function(){return location.href},p=k.memoize(function(){return k.isUndefined(document.addEventListener)}),f=k.memoize(function(){return p()||-1!==navigator.appVersion.indexOf("MSIE 9.")}),a=k.memoize(function(){return k.isDefined(history.pushState)&&"get"===l()}),r=k.memoize(function(){return"transition"in document.documentElement.style}),u=k.memoize(function(){return"oninput"in document.createElement("input")}),o=k.memoize(function(){return!!window.FormData}),i=k.memoize(function(){return!f()}),d=k.memoize(function(){var e,n,r,o;return o=t.fn.jquery,r=o.split("."),e=parseInt(r[0]),n=parseInt(r[1]),e>=2||1===e&&n>=9}),h=function(e){var t,n;return n=null!=(t=document.cookie.match(new RegExp(e+"=(\\w+)")))?t[1]:void 0,k.isPresent(n)&&(document.cookie=e+"=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/"),n},s=function(e){return e.preload||k.isBlank(e.confirm)||window.confirm(e.confirm)?k.resolvedPromise():k.unresolvablePromise()},l=k.memoize(function(){return(h("_up_request_method")||"get").toLowerCase()}),m=function(){return!p()&&d()},c=function(){return console.group||(console.group=function(){var t;return t=1<=arguments.length?e.call(arguments,0):[],g.apply(null,["group"].concat(e.call(t)))}),console.groupCollapsed||(console.groupCollapsed=function(){var t;return t=1<=arguments.length?e.call(arguments,0):[],g.apply(null,["groupCollapsed"].concat(e.call(t)))}),console.groupEnd||(console.groupEnd=function(){var t;return t=1<=arguments.length?e.call(arguments,0):[],g.apply(null,["groupEnd"].concat(e.call(t)))})},{url:S,loadPage:v,confirm:s,canPushState:a,canCssTransition:r,canInputEvent:u,canFormData:o,canLogSubstitution:i,isSupported:m,installPolyfills:c,puts:g,sprintf:y,sprintfWithFormattedArgs:b}}(jQuery)}.call(this),function(){var slice=[].slice;up.bus=function($){var boot,emit,emitReset,forgetUpDescription,live,liveUpDescriptions,logEmission,nextUpDescriptionNumber,nobodyPrevents,onEscape,rememberUpDescription,restoreSnapshot,snapshot,u,unbind,upDescriptionNumber,upDescriptionToJqueryDescription,upListenerToJqueryListener;return u=up.util,liveUpDescriptions={},nextUpDescriptionNumber=0,upListenerToJqueryListener=function(e){return function(t){var n;return n=t.$element||$(this),e.apply(n.get(0),[t,n,up.syntax.data(n)])}},upDescriptionToJqueryDescription=function(e,t){var n,r,o;return n=u.copy(e),o=n.pop(),r=void 0,t?(r=upListenerToJqueryListener(o),o._asJqueryListener=r,o._descriptionNumber=++nextUpDescriptionNumber):(r=o._asJqueryListener,r||u.error("up.off: The event listener %o was never registered through up.on")),n.push(r),n},live=function(){var e,t,n;return n=1<=arguments.length?slice.call(arguments,0):[],up.browser.isSupported()?(e=upDescriptionToJqueryDescription(n,!0),rememberUpDescription(n),(t=$(document)).on.apply(t,e),function(){return unbind.apply(null,n)}):function(){}},unbind=function(){var e,t,n;return n=1<=arguments.length?slice.call(arguments,0):[],e=upDescriptionToJqueryDescription(n,!1),forgetUpDescription(n),(t=$(document)).off.apply(t,e)},rememberUpDescription=function(e){var t;return t=upDescriptionNumber(e),liveUpDescriptions[t]=e},forgetUpDescription=function(e){var t;return t=upDescriptionNumber(e),delete liveUpDescriptions[t]},upDescriptionNumber=function(e){return u.last(e)._descriptionNumber},emit=function(e,t){var n,r;return null==t&&(t={}),r=$.Event(e,t),(n=t.$element)?delete t.$element:n=$(document),logEmission(e,t),n.trigger(r),r},logEmission=function(e,t){var n,r,o;return t.hasOwnProperty("message")?(n=t.message,delete t.message,u.isArray(n)?(o=n,n=o[0],r=2<=o.length?slice.call(o,1):[]):r=[],n?u.isPresent(t)?up.puts.apply(up,[n+" (%s (%o))"].concat(slice.call(r),[e],[t])):up.puts.apply(up,[n+" (%s)"].concat(slice.call(r),[e])):void 0):u.isPresent(t)?up.puts("Emitted event %s (%o)",e,t):up.puts("Emitted event %s",e)},nobodyPrevents=function(){var e,t;return e=1<=arguments.length?slice.call(arguments,0):[],t=emit.apply(null,e),t.isDefaultPrevented()?(up.puts("An observer prevented the event %s",e[0]),!1):!0},onEscape=function(e){return live("keydown","body",function(t){return u.escapePressed(t)?e(t):void 0})},snapshot=function(){var e,t,n,r;for(r=[],t=0,n=liveUpDescriptions.length;n>t;t++)e=liveUpDescriptions[t],r.push(e.isDefault=!0);return r},restoreSnapshot=function(){var e,t,n,r,o;for(t=u.reject(liveUpDescriptions,function(e){return e.isDefault}),o=[],n=0,r=t.length;r>n;n++)e=t[n],o.push(unbind.apply(null,e));return o},emitReset=function(){return emit("up:framework:reset",{message:"Resetting framework"})},boot=function(){return up.browser.isSupported()?(up.browser.installPolyfills(),emit("up:framework:boot",{message:"Booting framework"}),emit("up:framework:booted",{message:"Framework booted"}),u.nextFrame(function(){return u.whenReady().then(function(){return emit("up:app:boot",{message:"Booting user application"}),emit("up:app:booted",{message:"User application booted"})})})):void 0},live("up:framework:booted",snapshot),live("up:framework:reset",restoreSnapshot),{knife:eval("undefined"!=typeof Knife&&null!==Knife?Knife.point:void 0),on:live,off:unbind,emit:emit,nobodyPrevents:nobodyPrevents,onEscape:onEscape,emitReset:emitReset,boot:boot}}(jQuery),up.on=up.bus.on,up.off=up.bus.off,up.emit=up.bus.emit,up.reset=up.bus.emitReset,up.boot=up.bus.boot}.call(this),function(){var e=[].slice;up.log=function(){var t,n,r,o,u,i,a,s,l,c,p,f;return p=up.util,t=p.config({prefix:"[UP] ",enabled:!1,collapse:!1}),c=function(){return t.reset()},a=function(e){return""+t.prefix+e},n=function(){var n,r,o;return r=arguments[0],n=2<=arguments.length?e.call(arguments,1):[],t.enabled&&r?(o=up.browser).puts.apply(o,["debug",a(r)].concat(e.call(n))):void 0},l=function(){var n,r,o;return r=arguments[0],n=2<=arguments.length?e.call(arguments,1):[],t.enabled&&r?(o=up.browser).puts.apply(o,["log",a(r)].concat(e.call(n))):void 0},f=function(){var n,r,o;return r=arguments[0],n=2<=arguments.length?e.call(arguments,1):[],t.enabled&&r?(o=up.browser).puts.apply(o,["warn",a(r)].concat(e.call(n))):void 0},i=function(){var n,r,o,u,i;if(o=arguments[0],n=2<=arguments.length?e.call(arguments,1):[],r=n.pop(),!t.enabled||!o)return r();i=t.collapse?"groupCollapsed":"group",(u=up.browser).puts.apply(u,[i,a(o)].concat(e.call(n)));try{return r()}finally{o&&console.groupEnd()}},u=function(){var t,n,r;return n=arguments[0],t=2<=arguments.length?e.call(arguments,1):[],n?(r=up.browser).puts.apply(r,["error",a(n)].concat(e.call(t))):void 0},s=function(){var e;return e=" __ _____ ___ ___ / /_ __\n"+("/ // / _ \\/ _ \\/ _ \\/ / // / "+up.version+"\n")+"\\___/_//_/ .__/\\___/_/\\_. / \n / / / /\n\n",e+=t.enabled?"Call `up.log.disable()` to disable debugging output.":"Call `up.log.enable()` to enable debugging output.",up.browser.puts("log",e)},up.on("up:framework:boot",s),up.on("up:framework:reset",c),o=function(){return t.enabled=!0},r=function(){return t.enabled=!1},{puts:l,debug:n,error:u,warn:f,group:i,config:t,enable:o,disable:r}}(jQuery),up.puts=up.log.puts}.call(this),function(){var e=[].slice;up.syntax=function(t){var n,r,o,u,i,a,s,l,c,p,f,d,m,v,h,g;return g=up.util,n="up-destructable",r="up-destructors",c=[],m=[],l=function(){var t;return t=1<=arguments.length?e.call(arguments,0):[],f.apply(null,[c].concat(e.call(t)))},d=function(){var t;return t=1<=arguments.length?e.call(arguments,0):[],f.apply(null,[m].concat(e.call(t)))},i=function(){var t,n,r,o;return o=arguments[0],t=2<=arguments.length?e.call(arguments,1):[],n=t.pop(),r=g.options(t[0],{priority:0}),"first"===r.priority?r.priority=Number.POSITIVE_INFINITY:"last"===r.priority&&(r.priority=Number.NEGATIVE_INFINITY),{selector:o,callback:n,priority:r.priority,batch:r.batch,keep:r.keep}},f=function(){var t,n,r,o,u;if(u=arguments[0],t=2<=arguments.length?e.call(arguments,1):[],up.browser.isSupported()){for(r=i.apply(null,t),n=0;(o=u[n])&&o.priority>=r.priority;)n+=1;return u.splice(n,0,r)}},u=function(e,t,n){var r,u;return up.puts(e.isDefault?void 0:"Compiling '%s' on %o",e.selector,n),e.keep&&(u=g.isString(e.keep)?e.keep:"",t.attr("up-keep",u)),r=e.callback.apply(n,[t,p(t)]),g.isFunction(r)?o(t,r):void 0},o=function(e,t){var o;return e.addClass(n),o=e.data(r)||[],o.push(t),e.data(r,o)},s=function(e,n){var r;return n=g.options(n),r=t(n.skip),up.log.group("Compiling fragment %o",e.get(0),function(){var n,o,i,a,s,p;for(s=[m,c],p=[],o=0,i=s.length;i>o;o++)a=s[o],p.push(function(){var o,i,s;for(s=[],o=0,i=a.length;i>o;o++)l=a[o],n=g.findWithSelf(e,l.selector),n=n.filter(function(){var e;return e=t(this),g.all(r,function(t){return 0===e.closest(t).length})}),s.push(n.length?up.log.group(l.isDefault?void 0:"Compiling '%s' on %d element(s)",l.selector,n.length,function(){return l.batch?u(l,n,n.get()):n.each(function(){return u(l,t(this),this)})}):void 0);return s}());return p})},a=function(e){return g.findWithSelf(e,"."+n).each(function(){var e,o,u,i,a;for(e=t(this),u=e.data(r),i=0,a=u.length;a>i;i++)(o=u[i])();return e.removeData(r),e.removeClass(n)})},p=function(e){var n,r;return n=t(e),r=n.attr("up-data"),g.isString(r)&&""!==g.trim(r)?JSON.parse(r):{}},h=function(){var e;return e=function(e){return e.isDefault=!0},g.each(c,e),g.each(m,e)},v=function(){var e;return e=function(e){return e.isDefault},c=g.select(c,e),m=g.select(m,e)},up.on("up:framework:booted",h),up.on("up:framework:reset",v),{compiler:l,macro:d,compile:s,clean:a,data:p}}(jQuery),up.compiler=up.syntax.compiler,up.macro=up.syntax.macro,up.ready=function(){return up.util.error("up.ready no longer exists. Please use up.hello instead.")},up.awaken=function(){return up.util.error("up.awaken no longer exists. Please use up.compiler instead.")}}.call(this),function(){up.history=function(e){var t,n,r,o,u,i,a,s,l,c,p,f,d,m,v,h;return h=up.util,n=h.config({popTargets:["body"],restoreScroll:!0}),c=void 0,i=void 0,m=function(){return n.reset(),c=void 0,i=void 0},a=function(e){return h.normalizeUrl(e,{hash:!0})},r=function(){return a(up.browser.url())},o=function(e){return a(e)===r()},s=function(e){return i&&(c=i,i=void 0),i=e},d=function(e,t){return u("replace",e,t)},p=function(e,t){return up.puts("Current location is now %s",e),u("push",e,t)},u=function(e,n,u){var i,a;return u=h.options(u,{force:!1}),u.force||!o(n)?up.browser.canPushState()?(i=e+"State",a=t(),window.history[i](a,"",n),s(r())):h.error("This browser doesn't support history.pushState"):void 0},t=function(){return{fromUp:!0}},v=function(e){var t;return(null!=e?e.fromUp:void 0)?(t=r(),up.log.group("Restoring URL %s",t,function(){var e;return e=n.popTargets.join(", "),up.replace(e,t,{history:!1,title:!0,reveal:!1,transition:"none",saveScroll:!1,restoreScroll:n.restoreScroll})})):up.puts("Ignoring a state not pushed by Unpoly (%o)",e)},l=function(e){return up.log.group("History state popped to URL %s",r(),function(){var t;return s(r()),up.layout.saveScroll({url:c}),t=e.originalEvent.state,v(t)})},up.browser.canPushState()&&(f=function(){return e(window).on("popstate",l),d(r(),{force:!0})},"undefined"!=typeof jasmine&&null!==jasmine?f():setTimeout(f,100)),up.compiler("[up-back]",function(e){return h.isPresent(c)?(h.setMissingAttrs(e,{"up-href":c,"up-restore-scroll":""}),e.removeAttr("up-back"),up.link.makeFollowable(e)):void 0}),up.on("up:framework:reset",m),{config:n,defaults:function(){return h.error("up.history.defaults(...) no longer exists. Set values on he up.history.config property instead.")},push:p,replace:d,url:r,previousUrl:function(){return c},normalizeUrl:a}}(jQuery)}.call(this),function(){var slice=[].slice;up.layout=function($){var SCROLL_PROMISE_KEY,anchoredRight,config,finishScrolling,fixedChildren,lastScrollTops,measureObstruction,reset,restoreScroll,reveal,revealOrRestoreScroll,saveScroll,scroll,scrollTops,u,viewportOf,viewportSelector,viewports,viewportsWithin;return u=up.util,config=u.config({duration:0,viewports:[document,".up-modal-viewport","[up-viewport]"],fixedTop:["[up-fixed~=top]"],fixedBottom:["[up-fixed~=bottom]"],anchoredRight:["[up-anchored~=right]","[up-fixed~=top]","[up-fixed~=bottom]","[up-fixed~=right]"],snap:50,substance:150,easing:"swing"}),lastScrollTops=u.cache({size:30,key:up.history.normalizeUrl}),reset=function(){return config.reset(),lastScrollTops.clear()},SCROLL_PROMISE_KEY="up-scroll-promise",scroll=function(e,t,n){var r,o,i,a,s;return r=$(e),n=u.options(n),i=u.option(n.duration,config.duration),a=u.option(n.easing,config.easing),finishScrolling(r),i>0?(o=$.Deferred(),r.data(SCROLL_PROMISE_KEY,o),o.then(function(){return r.removeData(SCROLL_PROMISE_KEY),r.finish()}),s={scrollTop:t},r.get(0)===document&&(r=$("html, body")),r.animate(s,{duration:i,easing:a,complete:function(){return o.resolve()}}),o):(r.scrollTop(t),u.resolvedDeferred())},finishScrolling=function(e){return $(e).each(function(){var e;return(e=$(this).data(SCROLL_PROMISE_KEY))?e.resolve():void 0})},anchoredRight=function(){return u.multiSelector(config.anchoredRight).select()},measureObstruction=function(){var e,t,n,r;return n=function(e,t){var n,r;return n=$(e),r=n.css(t),u.isPresent(r)||u.error("Fixed element %o must have a CSS attribute %s",n.get(0),t),parseInt(r)+n.height()},t=function(){var e,t,o,u;for(o=$(config.fixedTop.join(", ")),u=[],e=0,t=o.length;t>e;e++)r=o[e],u.push(n(r,"top"));return u}(),e=function(){var e,t,o,u;for(o=$(config.fixedBottom.join(", ")),u=[],e=0,t=o.length;t>e;e++)r=o[e],u.push(n(r,"bottom"));return u}(),{top:Math.max.apply(Math,[0].concat(slice.call(t))),bottom:Math.max.apply(Math,[0].concat(slice.call(e)))}},reveal=function(e,t){var n,r,o,i,a,s,l,c,p,f,d,m,v,h;return n=$(e),up.puts("Revealing fragment %o",e.get(0)),t=u.options(t),r=t.viewport?$(t.viewport):viewportOf(n),m=u.option(t.snap,config.snap),h=r.is(document),v=h?u.clientSize().height:r.height(),p=r.scrollTop(),s=p,c=void 0,l=void 0,h?(l=measureObstruction(),c=0):(l={top:0,bottom:0},c=p),f=function(){return s+l.top},d=function(){return s+v-l.bottom-1},o=u.measure(n,{relative:r}),i=o.top+c,a=i+Math.min(o.height,config.substance)-1,a>d()&&(s+=a-d()),(i<f()||t.top)&&(s=i-l.top),m>s&&(s=0),s!==p?scroll(r,s,t):u.resolvedDeferred()},viewportSelector=function(){return u.multiSelector(config.viewports)},viewportOf=function(e,t){var n,r;return null==t&&(t={}),n=$(e),r=viewportSelector().seekUp(n),0===r.length&&t.strict!==!1&&u.error("Could not find viewport for %o",n),r},viewportsWithin=function(e){var t;return t=$(e),viewportSelector().findWithSelf(t)},viewports=function(){return viewportSelector().select()},scrollTops=function(){var e,t,n,r,o,u,i;for(u={},o=config.viewports,t=0,r=o.length;r>t;t++)i=o[t],e=$(i),e.length&&(n=i,i===document&&(n="document"),u[n]=e.scrollTop());return u},fixedChildren=function(e){var t,n;return null==e&&(e=void 0),e||(e=document.body),n=$(e),t=n.find("[up-fixed]"),u.isPresent(config.fixedTop)&&(t=t.add(n.find(config.fixedTop.join(", ")))),u.isPresent(config.fixedBottom)&&(t=t.add(n.find(config.fixedBottom.join(", ")))),t},saveScroll=function(e){var t,n;return null==e&&(e={}),n=u.option(e.url,up.history.url()),t=u.option(e.tops,scrollTops()),up.puts("Saving scroll positions for URL %s (%o)",n,t),lastScrollTops.set(n,t)},restoreScroll=function(e){var t,n,r,o,i;return null==e&&(e={}),i=up.history.url(),r=void 0,e.around?(n=viewportsWithin(e.around),t=viewportOf(e.around),r=t.add(n)):r=viewports(),o=lastScrollTops.get(i),up.log.group("Restoring scroll positions for URL %s to %o",i,o,function(){var e,t,n,i;for(t in o)i=o[t],n="document"===t?document:t,e=r.filter(n),scroll(e,i,{duration:0});return u.resolvedDeferred()})},revealOrRestoreScroll=function(e,t){var n,r,o,i;return n=$(e),t.restoreScroll?restoreScroll({around:n}):t.reveal?(t.source&&(i=u.parseUrl(t.source),i.hash&&"#"!==i.hash&&(o=i.hash.substr(1),r=u.findWithSelf(n,"#"+o+", a[name='"+o+"']"),r.length&&(n=r))),reveal(n)):u.resolvedDeferred()},up.on("up:framework:reset",reset),{knife:eval("undefined"!=typeof Knife&&null!==Knife?Knife.point:void 0),reveal:reveal,scroll:scroll,finishScrolling:finishScrolling,config:config,defaults:function(){return u.error("up.layout.defaults(...) no longer exists. Set values on he up.layout.config property instead.")},viewportOf:viewportOf,viewportsWithin:viewportsWithin,viewports:viewports,scrollTops:scrollTops,saveScroll:saveScroll,restoreScroll:restoreScroll,revealOrRestoreScroll:revealOrRestoreScroll,anchoredRight:anchoredRight,fixedChildren:fixedChildren}
2
+ }(jQuery),up.scroll=up.layout.scroll,up.reveal=up.layout.reveal}.call(this),function(){up.flow=function($){var autofocus,config,destroy,emitFragmentInserted,emitFragmentKept,extract,filterScripts,findKeepPlan,findOldFragment,first,hello,isRealElement,oldFragmentNotFound,parseImplantSteps,parseResponse,processResponse,reload,replace,reset,resolveSelector,setSource,source,swapElements,transferKeepableElements,u,updateHistory;return u=up.util,config=u.config({runInlineScripts:!0,runLinkedScripts:!1}),reset=function(){return config.reset()},setSource=function(e,t){var n;return n=$(e),u.isPresent(t)&&(t=u.normalizeUrl(t)),n.attr("up-source",t)},source=function(e){var t;return t=$(e).closest("[up-source]"),u.presence(t.attr("up-source"))||up.browser.url()},resolveSelector=function(e,t){var n,r;return u.isString(e)?(r=e,u.contains(r,"&")&&(t?(n=u.selectorForElement(t),r=r.replace(/\&/,n)):u.error("Found origin reference (%s) in selector %s, but options.origin is missing","&",r))):r=u.selectorForElement(e),r},replace=function(e,t,n){var r,o,i,a,s,l;return up.puts("Replacing %s from %s (%o)",e,t,n),n=u.options(n),l=resolveSelector(e,n.origin),r=u.option(n.failTarget,"body"),r=resolveSelector(r,n.origin),up.browser.canPushState()||n.history===!1?(s={url:t,method:n.method,data:n.data,target:l,failTarget:r,cache:n.cache,preload:n.preload,headers:n.headers},a=up.ajax(s),i=function(e,r,o){return processResponse(!0,l,t,s,o,n)},o=function(e){return processResponse(!1,r,t,s,e,n)},a=a.then(i,o)):(n.preload||up.browser.loadPage(t,u.only(n,"method","data")),u.unresolvablePromise())},processResponse=function(e,t,n,r,o,i){var a,s,l,c;return i.method=u.normalizeMethod(u.option(u.methodFromXhr(o),i.method)),i.title=u.option(u.titleFromXhr(o),i.title),i.title===!1||u.isString(i.title)||i.history===!1&&i.title!==!0||(i.title=u.titleFromXhr(o)),a="GET"===i.method,(c=u.locationFromXhr(o))?(n=c,e&&up.proxy.isCachable(r)&&(s={url:n,method:u.methodFromXhr(o),target:t},up.proxy.alias(r,s))):a&&(l=u.requestDataAsQuery(i.data))&&(n=n+"?"+l),e?a?(i.history===!1||u.isString(i.history)||(i.history=n),i.source===!1||u.isString(i.source)||(i.source=n)):(u.isString(i.history)||(i.history=!1),u.isString(i.source)||(i.source="keep")):(i.transition=i.failTransition,i.failTransition=void 0,a?(i.history!==!1&&(i.history=n),i.source!==!1&&(i.source=n)):(i.source="keep",i.history=!1)),i.preload?u.resolvedPromise():extract(t,o.responseText,i)},extract=function(e,t,n){return up.log.group("Extracting %s from %d bytes of HTML",e,null!=t?t.length:void 0,function(){var r,o,i;return n=u.options(n,{historyMethod:"push",requireMatch:!0,keep:!0}),i=resolveSelector(e,n.origin),o=parseResponse(t,n),n.title||(n.title=o.title()),n.saveScroll!==!1&&up.layout.saveScroll(),r=u.resolvedPromise(),n.beforeSwap&&(r=r.then(n.beforeSwap)),r=r.then(function(){return updateHistory(n)}),r=r.then(function(){var e,t,r,u,a;for(a=[],r=parseImplantSteps(i,n),e=0,t=r.length;t>e;e++)u=r[e],up.log.group("Updating %s",u.selector,function(){var e,t,r,i;return t=findOldFragment(u.selector,n),e=null!=(r=o.find(u.selector))?r.first():void 0,t&&e?(filterScripts(e,n),i=swapElements(t,e,u.pseudoClass,u.transition,n),a.push(i)):void 0});return $.when.apply($,a)}),n.afterSwap&&(r=r.then(n.afterSwap)),r})},findOldFragment=function(e,t){return first(".up-popup "+e)||first(".up-modal "+e)||first(e)||oldFragmentNotFound(e,t)},oldFragmentNotFound=function(e,t){var n;return t.requireMatch?(n="Could not find selector %s in current body HTML","#"===n[0]&&(n+=" (avoid using IDs)"),u.error(n,e)):void 0},filterScripts=function(e,t){var n,r,o,i,a,s,l,c,p,f;for(c=u.option(t.runInlineScripts,config.runInlineScripts),p=u.option(t.runLinkedScripts,config.runLinkedScripts),r=u.findWithSelf(e,"script"),l=[],a=0,s=r.length;s>a;a++)f=r[a],n=$(f),i=u.isPresent(n.attr("src")),o=!i,l.push(i&&p||o&&c?void 0:n.remove());return l},parseResponse=function(e,t){var n;return n=u.createElementFromHtml(e),{title:function(){var e;return null!=(e=n.querySelector("title"))?e.textContent:void 0},find:function(r){var o;return(o=$.find(r,n)[0])?$(o):t.requireMatch?u.error("Could not find selector %s in response %o",r,e):void 0}}},updateHistory=function(e){return e.title&&(document.title=e.title),e.history?up.history[e.historyMethod](e.history):void 0},swapElements=function(e,t,n,r,o){var i,a,s,l;return r||(r="none"),"keep"===o.source&&(o=u.merge(o,{source:source(e)})),up.motion.finish(e),n?(i=t.contents().wrap('<span class="up-insertion"></span>').parent(),"before"===n?e.prepend(i):e.append(i),hello(i.children(),o),s=up.layout.revealOrRestoreScroll(i,o),s=s.then(function(){return up.animate(i,r,o)}),s=s.then(function(){return u.unwrapElement(i)})):(a=findKeepPlan(e,t,o))?(emitFragmentKept(a),s=u.resolvedPromise()):(l=function(){return o.keepPlans=transferKeepableElements(e,t,o),e.is("body")?(up.syntax.clean(e),e.replaceWith(t)):t.insertBefore(e),o.source!==!1&&setSource(t,o.source),autofocus(t),hello(t,o),up.morph(e,t,r,o)},s=destroy(e,{animation:l})),s},transferKeepableElements=function(e,t,n){var r,o,i,a,s,l,c,p;if(a=[],n.keep)for(p=e.find("[up-keep]"),i=0,l=p.length;l>i;i++)s=p[i],r=$(s),(c=findKeepPlan(r,t,u.merge(n,{descendantsOnly:!0})))&&(o=r.clone(),r.replaceWith(o),c.$newElement.replaceWith(r),a.push(c));return a},findKeepPlan=function(e,t,n){var r,o,i,a,s;return n.keep&&(r=e,(s=u.castedAttr(r,"up-keep"))&&(u.isString(s)||(s="&"),s=resolveSelector(s,r),o=n.descendantsOnly?t.find(s):u.findWithSelf(t,s),o=o.first(),o.length&&o.is("[up-keep]")&&(i={$element:r,$newElement:o,newData:up.syntax.data(o)},a=u.merge(i,{message:["Keeping element %o",r.get(0)]}),up.bus.nobodyPrevents("up:fragment:keep",a))))?i:void 0},parseImplantSteps=function(e,t){var n,r,o,i,a,s,l,c,p,f,d,m;for(d=t.transition||t.animation||"none",n=/\ *,\ */,r=e.split(n),m=u.isString(m)?d.split(n):[d],l=[],o=i=0,a=r.length;a>i;o=++i)c=r[o],p=c.match(/^(.+?)(?:\:(before|after))?$/),p||u.error('Could not parse selector atom "%s"',c),e=p[1],"html"===e&&(e="body"),s=p[2],f=m[o]||u.last(m),l.push({selector:e,pseudoClass:s,transition:f});return l},hello=function(e,t){var n,r,o,i,a,s;for(n=$(e),t=u.options(t,{keepPlans:[]}),o=[],s=t.keepPlans,r=0,i=s.length;i>r;r++)a=s[r],emitFragmentKept(a),o.push(a.$element);return up.syntax.compile(n,{skip:o}),emitFragmentInserted(n,t),n},emitFragmentInserted=function(e,t){var n;return n=$(e),up.emit("up:fragment:inserted",{$element:n,message:["Inserted fragment %o",n.get(0)],origin:t.origin})},emitFragmentKept=function(e){var t;return t=u.merge(e,{message:["Kept fragment %o",e.$element.get(0)]}),up.emit("up:fragment:kept",t)},autofocus=function(e){var t,n;return n="[autofocus]:last",t=u.findWithSelf(e,n),t.length&&t.get(0)!==document.activeElement?t.focus():void 0},isRealElement=function(e){var t;return t=".up-ghost, .up-destroying",0===e.closest(t).length},first=function(e){var t,n,r,o,i,a;for(o=void 0,o=u.isString(e)?$(e).get():e,n=void 0,i=0,a=o.length;a>i;i++)if(r=o[i],t=$(r),isRealElement(t)){n=t;break}return n},destroy=function(e,t){var n,r,o,i,a;return n=$(e),n.is(".up-placeholder, .up-tooltip, .up-modal, .up-popup")||(i=["Destroying fragment %o",n.get(0)],a=["Destroyed fragment %o",n.get(0)]),0===n.length?u.resolvedDeferred():up.bus.nobodyPrevents("up:fragment:destroy",{$element:n,message:i})?(t=u.options(t,{animation:!1}),r=up.motion.animateOptions(t),n.addClass("up-destroying"),u.isPresent(t.url)&&up.history.push(t.url),u.isPresent(t.title)&&(document.title=t.title),o=u.presence(t.animation,u.isDeferred)||up.motion.animate(n,t.animation,r),o.then(function(){return up.syntax.clean(n),up.emit("up:fragment:destroyed",{$element:n,message:a}),n.remove()}),o):$.Deferred()},reload=function(e,t){var n;return t=u.options(t,{cache:!1}),n=t.url||source(e),replace(e,n,t)},up.on("up:app:boot",function(){var e;return e=$(document.body),setSource(e,up.browser.url()),hello(e)}),up.on("up:framework:reset",reset),{knife:eval("undefined"!=typeof Knife&&null!==Knife?Knife.point:void 0),replace:replace,reload:reload,destroy:destroy,extract:extract,first:first,source:source,resolveSelector:resolveSelector,hello:hello,config:config}}(jQuery),up.replace=up.flow.replace,up.extract=up.flow.extract,up.reload=up.flow.reload,up.destroy=up.flow.destroy,up.first=up.flow.first,up.hello=up.flow.hello}.call(this),function(){var e=[].slice;up.motion=function(t){var n,r,o,u,i,a,s,l,c,p,f,d,m,v,h,g,y,b,w,k,S,x,D,P,$,A,E,T;return E=up.util,a={},c={},$={},p={},l=E.config({duration:300,delay:0,easing:"ease",enabled:!0}),k=function(){return a=E.copy(c),$=E.copy(p),l.reset()},h=function(){return l.enabled&&up.browser.canCssTransition()},o=function(e,n,r){var i;return i=t(e),m(i),r=u(r),"none"===n||n===!1?b():E.isFunction(n)?s(n(i,r),n):E.isString(n)?o(i,d(n),r):E.isHash(n)?h()?E.cssAnimate(i,n,r):(i.css(n),E.resolvedDeferred()):E.error("Unknown animation type for %o",n)},u=function(){var t,n,r,o,u;return n=1<=arguments.length?e.call(arguments,0):[],u=n.shift()||{},t=E.isJQuery(n[0])?n.shift():E.nullJQuery(),o=E.isObject(n[0])?n.shift():{},r={},r.easing=E.option(u.easing,E.presentAttr(t,"up-easing"),o.easing,l.easing),r.duration=Number(E.option(u.duration,E.presentAttr(t,"up-duration"),o.duration,l.duration)),r.delay=Number(E.option(u.delay,E.presentAttr(t,"up-delay"),o.delay,l.delay)),r},d=function(e){return a[e]||E.error("Unknown animation %o",e)},r="up-ghosting-deferred",n="up-ghosting",T=function(e,t,o,u){var i,a,s,l,c,p,f,d;return o.copy===!1||e.is(".up-ghost")||t.is(".up-ghost")?u(e,t):(p=void 0,l=void 0,f=void 0,c=void 0,a=up.layout.viewportOf(e),i=e.add(t),E.temporaryCss(t,{display:"none"},function(){return p=w(e,a),f=a.scrollTop()}),E.temporaryCss(e,{display:"none"},function(){return up.layout.revealOrRestoreScroll(t,o),l=w(t,a),c=a.scrollTop()}),p.moveTop(c-f),e.hide(),d=E.temporaryCss(t,{opacity:"0"}),s=u(p.$ghost,l.$ghost),i.data(r,s),i.addClass(n),s.then(function(){return i.removeData(r),i.removeClass(n),d(),p.$bounds.remove(),l.$bounds.remove()}),s)},m=function(e){var r,o,u;return null==e&&(e=".up-animating"),o=t(e),r=E.findWithSelf(o,".up-animating"),E.finishCssAnimate(r),u=E.findWithSelf(o,"."+n),v(u)},v=function(e){return e.each(function(){var e,n;return e=t(this),(n=E.pluckData(e,r))?n.resolve():void 0})},s=function(e,t){return E.isDeferred(e)?e:E.error("Did not return a promise with .then and .resolve methods: %o",t)},y=function(e,n,r,i){var l,c;return"none"===r&&(r=!1),i=E.options(i),c=t(e),l=t(n),f(c,r),f(l,r),up.log.group(r?"Morphing %o to %o (using %s, %o)":void 0,c.get(0),l.get(0),r,i,function(){var e,t,n,p;return t=E.only(i,"reveal","restoreScroll","source"),t=E.extend(t,u(i)),h()?(m(c),m(l),r?(e=a[r])?(x(c,l,t),o(l,e,t)):(p=E.presence(r,E.isFunction)||$[r])?T(c,l,t,function(e,n){var o;return o=p(e,n,t),s(o,r)}):E.isString(r)&&r.indexOf("/")>=0?(n=r.split("/"),p=function(e,t,r){return S(o(e,n[0],r),o(t,n[1],r))},y(c,l,p,t)):E.error("Unknown transition %o",r):x(c,l,t)):x(c,l,t)})},f=function(e,t){var n;return t&&0===e.parents("body").length?(n=e.get(0),E.error("Can't morph a <%s> element (%o)",n.tagName,n)):void 0},x=function(e,t,n){return e.hide(),up.layout.revealOrRestoreScroll(t,n)},w=function(e,n){var r,o,u,i,a,s,l,c,p;for(i=E.measure(e,{relative:!0,inner:!0}),u=e.clone(),u.find("script").remove(),u.css({position:"static"===e.css("position")?"static":"relative",top:"",right:"",bottom:"",left:"",width:"100%",height:"100%"}),u.addClass("up-ghost"),r=t('<div class="up-bounds"></div>'),r.css({position:"absolute"}),r.css(i),p=i.top,c=function(e){return 0!==e?(p+=e,r.css({top:p})):void 0},u.appendTo(r),r.insertBefore(e),c(e.offset().top-u.offset().top),o=up.layout.fixedChildren(u),s=0,l=o.length;l>s;s++)a=o[s],E.fixedToAbsolute(a,n);return{$ghost:u,$bounds:r,moveTop:c}},P=function(e,t){return $[e]=t},i=function(e,t){return a[e]=t},D=function(){return c=E.copy(a),p=E.copy($)},S=E.resolvableWhen,b=E.resolvedDeferred,g=function(e){return e===!1||"none"===e||e===b},i("none",b),i("fade-in",function(e,t){return e.css({opacity:0}),o(e,{opacity:1},t)}),i("fade-out",function(e,t){return e.css({opacity:1}),o(e,{opacity:0},t)}),A=function(e,t){return{transform:"translate("+e+"px, "+t+"px)"}},i("move-to-top",function(e,t){var n,r;return n=E.measure(e),r=n.top+n.height,e.css(A(0,0)),o(e,A(0,-r),t)}),i("move-from-top",function(e,t){var n,r;return n=E.measure(e),r=n.top+n.height,e.css(A(0,-r)),o(e,A(0,0),t)}),i("move-to-bottom",function(e,t){var n,r;return n=E.measure(e),r=E.clientSize().height-n.top,e.css(A(0,0)),o(e,A(0,r),t)}),i("move-from-bottom",function(e,t){var n,r;return n=E.measure(e),r=E.clientSize().height-n.top,e.css(A(0,r)),o(e,A(0,0),t)}),i("move-to-left",function(e,t){var n,r;return n=E.measure(e),r=n.left+n.width,e.css(A(0,0)),o(e,A(-r,0),t)}),i("move-from-left",function(e,t){var n,r;return n=E.measure(e),r=n.left+n.width,e.css(A(-r,0)),o(e,A(0,0),t)}),i("move-to-right",function(e,t){var n,r;return n=E.measure(e),r=E.clientSize().width-n.left,e.css(A(0,0)),o(e,A(r,0),t)}),i("move-from-right",function(e,t){var n,r;return n=E.measure(e),r=E.clientSize().width-n.left,e.css(A(r,0)),o(e,A(0,0),t)}),i("roll-down",function(e,t){var n,r,u;return r=e.height(),u=E.temporaryCss(e,{height:"0px",overflow:"hidden"}),n=o(e,{height:r+"px"},t),n.then(u),n}),P("none",b),P("move-left",function(e,t,n){return S(o(e,"move-to-left",n),o(t,"move-from-right",n))}),P("move-right",function(e,t,n){return S(o(e,"move-to-right",n),o(t,"move-from-left",n))}),P("move-up",function(e,t,n){return S(o(e,"move-to-top",n),o(t,"move-from-bottom",n))}),P("move-down",function(e,t,n){return S(o(e,"move-to-bottom",n),o(t,"move-from-top",n))}),P("cross-fade",function(e,t,n){return S(o(e,"fade-out",n),o(t,"fade-in",n))}),up.on("up:framework:booted",D),up.on("up:framework:reset",k),{morph:y,animate:o,animateOptions:u,finish:m,transition:P,animation:i,config:l,isEnabled:h,defaults:function(){return E.error("up.motion.defaults(...) no longer exists. Set values on he up.motion.config property instead.")},none:b,when:S,prependCopy:w,isNone:g}}(jQuery),up.transition=up.motion.transition,up.animation=up.motion.animation,up.morph=up.motion.morph,up.animate=up.motion.animate}.call(this),function(){var e=[].slice;up.proxy=function(t){var n,r,o,u,i,a,s,l,c,p,f,d,m,v,h,g,y,b,w,k,S,x,D,P,$,A,E,T,C,F,O,U,R,_;return _=up.util,n=void 0,P=void 0,O=void 0,S=void 0,U=void 0,A=[],p=_.config({slowDelay:300,preloadDelay:75,cacheSize:70,cacheExpiry:3e5,maxRequests:4,wrapMethods:["PATCH","PUT","DELETE"],wrapMethodParam:"_method",safeMethods:["GET","OPTIONS","HEAD"]}),i=function(e){return k(e),[e.url,e.method,_.requestDataAsQuery(e.data),e.target].join("|")},u=_.cache({size:function(){return p.cacheSize},expiry:function(){return p.cacheExpiry},key:i}),f=function(e){var t,n,r,o,i,a,s;if(e=k(e),m(e))for(n=[e],"html"!==e.target&&(a=_.merge(e,{target:"html"}),n.push(a),"body"!==e.target&&(i=_.merge(e,{target:"body"}),n.push(i))),r=0,o=n.length;o>r;r++)if(t=n[r],s=u.get(t))return s},a=function(){return clearTimeout(P),P=null},s=function(){return clearTimeout(O),O=null},T=function(){return n=null,a(),s(),S=0,p.reset(),u.clear(),U=!1,A=[]},T(),k=function(e){return e._normalized||(e.method=_.normalizeMethod(e.method),e.url&&(e.url=_.normalizeUrl(e.url)),e.target||(e.target="body"),e._normalized=!0),e},r=function(){var t,n,r,o,u,i,a;return t=1<=arguments.length?e.call(arguments,0):[],o=_.extractOptions(t),_.isGiven(t[0])&&(o.url=t[0]),n=o.cache===!0,r=o.cache===!1,a=_.only(o,"url","method","data","target","headers","_normalized"),a=k(a),u=!0,v(a)||n?(i=f(a))&&!r?(up.puts("Re-using cached response for %s %s",a.method,a.url),u="pending"===i.state()):(i=b(a),F(a,i),i.fail(function(){return E(a)})):(c(),i=b(a)),u&&!o.preload&&(w(),i.always(y)),console.groupEnd(),i},m=function(e){return!_.isFormData(e.data)},h=function(){return 0===S},d=function(){return S>0},w=function(){var e,t;return t=h(),S+=1,t?(e=function(){return d()?(up.emit("up:proxy:slow",{message:"Proxy is busy"}),U=!0):void 0},O=_.setTimer(p.slowDelay,e)):void 0},y=function(){return S-=1,h()&&U?(up.emit("up:proxy:recover",{message:"Proxy is idle"}),U=!1):void 0},b=function(e){return S<p.maxRequests?g(e):$(e)},$=function(e){var n,r;return up.puts("Queuing request for %s %s",e.method,e.url),n=t.Deferred(),r={deferred:n,request:e},A.push(r),n.promise()},g=function(e){var n;return up.emit("up:proxy:load",_.merge(e,{message:["Loading %s %s",e.method,e.url]})),e=_.copy(e),e.headers||(e.headers={}),e.headers["X-Up-Target"]=e.target,_.contains(p.wrapMethods,e.method)&&(e.data=_.appendRequestData(e.data,p.wrapMethodParam,e.method),e.method="POST"),_.isFormData(e.data)&&(e.contentType=!1,e.processData=!1),n=t.ajax(e),n.done(function(t,n,r){return C(e,r)}),n.fail(function(t){return C(e,t)}),n},C=function(e,t){var n;return up.emit("up:proxy:received",_.merge(e,{message:["Server responded with %s %s (%d bytes)",t.status,t.statusText,null!=(n=t.responseText)?n.length:void 0]})),x()},x=function(){var t,n;(t=A.shift())&&(n=g(t.request),n.done(function(){var n,r;return n=1<=arguments.length?e.call(arguments,0):[],(r=t.deferred).resolve.apply(r,n)}),n.fail(function(){var n,r;return n=1<=arguments.length?e.call(arguments,0):[],(r=t.deferred).reject.apply(r,n)}))},o=u.alias,F=u.set,E=u.remove,c=u.clear,v=function(e){return k(e),_.contains(p.safeMethods,e.method)},l=function(e){var t,r;return r=parseInt(_.presentAttr(e,"up-delay"))||p.preloadDelay,e.is(n)?void 0:(n=e,a(),t=function(){return D(e),n=null},R(t,r))},R=function(e,t){return P=setTimeout(e,t)},D=function(e,n){var r,o;return r=t(e),n=_.options(n),o=up.link.followMethod(r,n),v({method:o})?up.log.group("Preloading link %o",r,function(){return n.preload=!0,up.follow(r,n)}):(up.puts("Won't preload %o due to unsafe method %s",r,o),_.resolvedPromise())},up.on("mouseover mousedown touchstart","[up-preload]",function(e,t){return up.link.childClicked(e,t)?void 0:l(t)}),up.on("up:framework:reset",T),{preload:D,ajax:r,get:f,alias:o,clear:c,remove:E,isIdle:h,isBusy:d,isCachable:m,config:p,defaults:function(){return _.error("up.proxy.defaults(...) no longer exists. Set values on he up.proxy.config property instead.")}}}(jQuery),up.ajax=up.proxy.ajax}.call(this),function(){up.link=function($){var allowDefault,childClicked,follow,followMethod,followVariantSelectors,isFollowable,makeFollowable,onAction,shouldProcessLinkEvent,u,visit;return u=up.util,visit=function(e,t){var n;return t=u.options(t),n=u.option(t.target,"body"),up.replace(n,e,t)},follow=function(e,t){var n,r,o;return n=$(e),t=u.options(t),o=u.option(n.attr("up-href"),n.attr("href")),r=u.option(t.target,n.attr("up-target"),"body"),t.failTarget=u.option(t.failTarget,n.attr("up-fail-target"),"body"),t.transition=u.option(t.transition,u.castedAttr(n,"up-transition"),"none"),t.failTransition=u.option(t.failTransition,u.castedAttr(n,"up-fail-transition"),"none"),t.history=u.option(t.history,u.castedAttr(n,"up-history")),t.reveal=u.option(t.reveal,u.castedAttr(n,"up-reveal"),!0),t.cache=u.option(t.cache,u.castedAttr(n,"up-cache")),t.restoreScroll=u.option(t.restoreScroll,u.castedAttr(n,"up-restore-scroll")),t.method=followMethod(n,t),t.origin=u.option(t.origin,n),t.confirm=u.option(t.confirm,n.attr("up-confirm")),t=u.merge(t,up.motion.animateOptions(t,n)),up.browser.confirm(t).then(function(){return up.replace(r,o,t)})},followMethod=function(e,t){var n;return n=$(e),t=u.options(t),u.option(t.method,n.attr("up-method"),n.attr("data-method"),"get").toUpperCase()},childClicked=function(e,t){var n,r;return n=$(e.target),r=n.closest("a, [up-href]"),r.length&&t.find(r).length},shouldProcessLinkEvent=function(e,t){return u.isUnmodifiedMouseEvent(e)&&!childClicked(e,t)},followVariantSelectors=[],allowDefault=function(){},onAction=function(e,t){var n;return followVariantSelectors.push(e),n=function(e){return up.navigation.withActiveMark(e,{enlarge:!0},function(){return t(e)})},up.on("click","a"+e+", [up-href]"+e,function(e,t){return shouldProcessLinkEvent(e,t)?t.is("[up-instant]")?e.preventDefault():(e.preventDefault(),n(t)):allowDefault(e)}),up.on("mousedown","a"+e+"[up-instant], [up-href]"+e+"[up-instant]",function(e,t){return shouldProcessLinkEvent(e,t)?(e.preventDefault(),n(t)):void 0})},isFollowable=function(e){return u.any(followVariantSelectors,function(t){return e.is(t)})},makeFollowable=function(e){var t;return t=$(e),isFollowable(t)?void 0:t.attr("up-follow","")},onAction("[up-target]",function(e){return follow(e)}),onAction("[up-follow]",function(e){return follow(e)}),up.macro("[up-dash]",{priority:"last"},function(e){var t,n;return n=u.castedAttr(e,"up-dash"),e.removeAttr("up-dash"),t={"up-preload":"","up-instant":""},n===!0?makeFollowable(e):t["up-target"]=n,u.setMissingAttrs(e,t)}),up.macro("[up-expand]",{priority:"last"},function(e){var t,n,r,o,i,a,s,l,c,p;if(t=e.find("a, [up-href]"),(c=e.attr("up-expand"))&&(t=t.filter(c)),i=t.get(0)){for(p=/^up-/,s={},s["up-href"]=$(i).attr("href"),l=i.attributes,r=0,o=l.length;o>r;r++)n=l[r],a=n.name,a.match(p)&&(s[a]=n.value);return u.setMissingAttrs(e,s),e.removeAttr("up-expand"),makeFollowable(e)}}),{knife:eval("undefined"!=typeof Knife&&null!==Knife?Knife.point:void 0),visit:visit,follow:follow,makeFollowable:makeFollowable,shouldProcessLinkEvent:shouldProcessLinkEvent,childClicked:childClicked,followMethod:followMethod,onAction:onAction}}(jQuery),up.visit=up.link.visit,up.follow=up.link.follow}.call(this),function(){var slice=[].slice;up.form=function($){var autosubmit,config,currentValuesForSwitch,observe,observeForm,reset,resolveValidateTarget,submit,switchTargets,u,validate;return u=up.util,config=u.config({validateTargets:["[up-fieldset]:has(&)","fieldset:has(&)","label:has(&)","form:has(&)"],fields:[":input"],observeDelay:0}),reset=function(){return config.reset()},submit=function(e,t){var n,r,o,i,a,s,l;return n=$(e).closest("form"),t=u.options(t),s=u.option(t.target,n.attr("up-target"),"body"),l=u.option(t.url,n.attr("action"),up.browser.url()),t.failTarget=u.option(t.failTarget,n.attr("up-fail-target"))||u.selectorForElement(n),t.history=u.option(t.history,u.castedAttr(n,"up-history"),!0),t.transition=u.option(t.transition,u.castedAttr(n,"up-transition"),"none"),t.failTransition=u.option(t.failTransition,u.castedAttr(n,"up-fail-transition"),"none"),t.method=u.option(t.method,n.attr("up-method"),n.attr("data-method"),n.attr("method"),"post").toUpperCase(),t.headers=u.option(t.headers,{}),t.reveal=u.option(t.reveal,u.castedAttr(n,"up-reveal"),!0),t.cache=u.option(t.cache,u.castedAttr(n,"up-cache")),t.restoreScroll=u.option(t.restoreScroll,u.castedAttr(n,"up-restore-scroll")),t.origin=u.option(t.origin,n),t.data=up.util.requestDataFromForm(n),t=u.merge(t,up.motion.animateOptions(t,n)),i=n.find("input[type=file]").length,r=!i||u.isFormData(t.data),o=up.browser.canPushState()||t.history===!1,t.validate&&(t.headers||(t.headers={}),t.headers["X-Up-Validate"]=t.validate,!r)?u.unresolvablePromise():(up.navigation.markActive(n),r&&o?(a=up.replace(s,l,t),a.always(function(){return up.navigation.unmarkActive(n)}),a):(n.get(0).submit(),u.unresolvablePromise()))},observe=function(){var $element,args,callback,callbackArg,callbackPromise,callbackTimer,changeEvents,check,clearTimer,delay,knownValue,nextCallback,options,rawCallback,runNextCallback,selectorOrElement;return selectorOrElement=arguments[0],args=2<=arguments.length?slice.call(arguments,1):[],options={},callbackArg=void 0,1===args.length&&(callbackArg=args[0]),args.length>1&&(options=u.options(args[0]),callbackArg=args[1]),$element=$(selectorOrElement),options=u.options(options),delay=u.option($element.attr("up-delay"),options.delay,config.observeDelay),delay=parseInt(delay),callback=null,u.isGiven(options.change)&&u.error("up.observe now takes the change callback as the last argument"),rawCallback=u.option(u.presentAttr($element,"up-observe"),callbackArg),callback=u.isString(rawCallback)?function(value,$field){return eval(rawCallback)}:rawCallback||u.error("up.observe: No change callback given"),$element.is("form")?observeForm($element,options,callback):(knownValue=null,callbackTimer=null,callbackPromise=u.resolvedPromise(),nextCallback=null,runNextCallback=function(){var e;return nextCallback?(e=nextCallback(),nextCallback=null,e):void 0},check=function(){var e,t,n;return n=$element.val(),t=u.isNull(knownValue),knownValue===n||(knownValue=n,t)?void 0:(clearTimer(),nextCallback=function(){return callback.apply($element.get(0),[n,$element])},e=function(){return callbackPromise.then(function(){var e;return e=runNextCallback(),callbackPromise=u.isPromise(e)?e:u.resolvedPromise()})},u.setTimer(delay,e))},clearTimer=function(){return clearTimeout(callbackTimer)},changeEvents=up.browser.canInputEvent()?"input change":"input change keypress paste cut click propertychange",$element.on(changeEvents,check),check(),function(){return $element.off(changeEvents,check),clearTimer()})},observeForm=function(e,t,n){var r,o;return r=u.multiSelector(config.fields).find(e),o=u.map(r,function(e){return observe(e,n)}),function(){var e,t,n,r;for(r=[],t=0,n=o.length;n>t;t++)e=o[t],r.push(e());return r}},autosubmit=function(e,t){return observe(e,t,function(e,t){var n;return n=t.closest("form"),up.navigation.withActiveMark(t,function(){return submit(n)})})},resolveValidateTarget=function(e,t){var n;return n=u.option(t.target,e.attr("up-validate")),u.isBlank(n)&&(n||(n=u.detect(config.validateTargets,function(n){var r;return r=up.flow.resolveSelector(n,t.origin),e.closest(r).length}))),u.isBlank(n)&&u.error("Could not find default validation target for %o (tried ancestors %o)",e.get(0),config.validateTargets),u.isString(n)||(n=u.selectorForElement(n)),n},validate=function(e,t){var n,r,o;return n=$(e),t=u.options(t),t.origin=n,t.target=resolveValidateTarget(n,t),t.failTarget=t.target,t.history=!1,t.headers=u.option(t.headers,{}),t.validate=n.attr("name")||"__none__",t=u.merge(t,up.motion.animateOptions(t,n)),r=n.closest("form"),o=up.submit(r,t)},currentValuesForSwitch=function(e){var t,n,r;return r=void 0,e.is("input[type=checkbox]")?r=e.is(":checked")?[":checked",":present",e.val()]:[":unchecked",":blank"]:e.is("input[type=radio]")?(t=e.closest("form, body").find("input[type='radio'][name='"+e.attr("name")+"']:checked"),r=t.length?[":checked",":present",t.val()]:[":unchecked",":blank"]):(n=e.val(),r=u.isPresent(n)?[":present",n]:[":blank"]),r},currentValuesForSwitch=function(e){var t,n,r,o;return e.is("input[type=checkbox]")?e.is(":checked")?(r=e.val(),n=":checked"):n=":unchecked":e.is("input[type=radio]")?(t=e.closest("form, body").find("input[type='radio'][name='"+e.attr("name")+"']:checked"),t.length?(n=":checked",r=t.val()):n=":unchecked"):r=e.val(),o=[],u.isPresent(r)?(o.push(r),o.push(":present")):o.push(":blank"),u.isPresent(n)&&o.push(n),o},switchTargets=function(e,t){var n,r,o;return n=$(e),t=u.options(t),o=u.option(t.target,n.attr("up-switch")),u.isPresent(o)||u.error("No switch target given for %o",n.get(0)),r=currentValuesForSwitch(n),$(o).each(function(){var e,t,n,o;return e=$(this),(t=e.attr("up-hide-for"))?(t=t.split(" "),n=0===u.intersect(r,t).length):(o=(o=e.attr("up-show-for"))?o.split(" "):[":present",":checked"],n=u.intersect(r,o).length>0),e.toggle(n)})},up.on("submit","form[up-target]",function(e,t){return e.preventDefault(),submit(t)}),up.on("change","[up-validate]",function(e,t){return validate(t)}),up.on("change","[up-switch]",function(e,t){return switchTargets(t)}),up.compiler("[up-switch]",function(e){return switchTargets(e)}),up.compiler("[up-observe]",function(e){return observe(e)}),up.compiler("[up-autosubmit]",function(e){return autosubmit(e)}),up.on("up:framework:reset",reset),{knife:eval("undefined"!=typeof Knife&&null!==Knife?Knife.point:void 0),config:config,submit:submit,observe:observe,validate:validate,switchTargets:switchTargets}}(jQuery),up.submit=up.form.submit,up.observe=up.form.observe,up.autosubmit=up.form.autosubmit,up.validate=up.form.validate}.call(this),function(){up.popup=function($){var attach,autoclose,close,config,contains,coveredUrl,createFrame,currentUrl,discardHistory,isOpen,reset,setPosition,u;return u=up.util,currentUrl=void 0,coveredUrl=function(){return $(".up-popup").attr("up-covered-url")},config=u.config({openAnimation:"fade-in",closeAnimation:"fade-out",openDuration:null,closeDuration:null,openEasing:null,closeEasing:null,position:"bottom-right",history:!1}),reset=function(){return close({animation:!1}),config.reset()},setPosition=function(e,t){var n,r,o,i;switch(r={},n=$(".up-popup"),i=u.measure(n),u.isFixed(e)?(o=e.get(0).getBoundingClientRect(),r.position="fixed"):o=u.measure(e),t){case"bottom-right":r.top=o.top+o.height,r.left=o.left+o.width-i.width;break;case"bottom-left":r.top=o.top+o.height,r.left=o.left;break;case"top-right":r.top=o.top-i.height,r.left=o.left+o.width-i.width;break;case"top-left":r.top=o.top-i.height,r.left=o.left;break;default:u.error("Unknown position option '%s'",t)}return n.attr("up-position",t),n.css(r)},discardHistory=function(){var e;return e=$(".up-popup"),e.removeAttr("up-covered-url"),e.removeAttr("up-covered-title")},createFrame=function(e,t){var n;return n=u.resolvedPromise(),isOpen()&&(n=n.then(function(){return close()})),n=n.then(function(){var n;return n=u.$createElementFromSelector(".up-popup"),t.sticky&&n.attr("up-sticky",""),n.attr("up-covered-url",up.browser.url()),n.attr("up-covered-title",document.title),u.$createPlaceholder(e,n),n.appendTo(document.body),n})},isOpen=function(){return $(".up-popup").length>0},attach=function(e,t){var n,r,o,i,a;return n=$(e),n.length||u.error("Cannot attach popup to non-existing element %o",e),t=u.options(t),a=u.option(u.pluckKey(t,"url"),n.attr("up-href"),n.attr("href")),o=u.option(u.pluckKey(t,"html")),i=u.option(u.pluckKey(t,"target"),n.attr("up-popup"),"body"),t.position=u.option(t.position,n.attr("up-position"),config.position),t.animation=u.option(t.animation,n.attr("up-animation"),config.openAnimation),t.sticky=u.option(t.sticky,u.castedAttr(n,"up-sticky"),config.sticky),t.history=up.browser.canPushState()?u.option(t.history,u.castedAttr(n,"up-history"),config.history):!1,t.confirm=u.option(t.confirm,n.attr("up-confirm")),t.method=up.link.followMethod(n,t),r=up.motion.animateOptions(t,n,{duration:config.openDuration,easing:config.openEasing}),up.browser.confirm(t).then(function(){var e,s;return up.bus.nobodyPrevents("up:popup:open",{url:a,message:"Opening popup"})?(t.beforeSwap=function(){return createFrame(i,t)},e=u.merge(t,{animation:!1}),s=o?up.extract(i,o,e):up.replace(i,a,e),s=s.then(function(){return setPosition(n,t.position)}),s=s.then(function(){return up.animate($(".up-popup"),t.animation,r)}),s=s.then(function(){return up.emit("up:popup:opened",{message:"Popup opened"})})):u.unresolvablePromise()})},close=function(e){var t,n,r;return t=$(".up-popup"),t.length?up.bus.nobodyPrevents("up:popup:close",{$element:t})?(e=u.options(e,{animation:config.closeAnimation,url:t.attr("up-covered-url"),title:t.attr("up-covered-title")}),n=up.motion.animateOptions(e,{duration:config.closeDuration,easing:config.closeEasing}),u.extend(e,n),currentUrl=void 0,r=up.destroy(t,e),r=r.then(function(){return up.emit("up:popup:closed",{message:"Popup closed"})})):u.unresolvablePromise():u.resolvedPromise()},autoclose=function(){return $(".up-popup").is("[up-sticky]")?void 0:(discardHistory(),close())},contains=function(e){var t;return t=$(e),t.closest(".up-popup").length>0},up.link.onAction("[up-popup]",function(e){return e.is(".up-current")?close():attach(e)}),up.on("click","body",function(e){var t;return t=$(e.target),t.closest(".up-popup").length||t.closest("[up-popup]").length?void 0:close()}),up.on("up:fragment:inserted",function(e,t){var n;if(contains(t)){if(n=t.attr("up-source"))return currentUrl=n}else if(contains(e.origin))return autoclose()}),up.bus.onEscape(function(){return close()}),up.on("click","[up-close]",function(e,t){return t.closest(".up-popup").length?(close(),e.preventDefault()):void 0}),up.on("up:framework:reset",reset),{knife:eval("undefined"!=typeof Knife&&null!==Knife?Knife.point:void 0),attach:attach,close:close,url:function(){return currentUrl},coveredUrl:coveredUrl,config:config,defaults:function(){return u.error("up.popup.defaults(...) no longer exists. Set values on he up.popup.config property instead.")},contains:contains,open:function(){return up.error("up.popup.open no longer exists. Please use up.popup.attach instead.")},source:function(){return up.error("up.popup.source no longer exists. Please use up.popup.url instead.")},isOpen:isOpen}}(jQuery)}.call(this),function(){up.modal=function($){var animate,autoclose,close,config,contains,coveredUrl,createFrame,currentFlavor,currentUrl,discardHistory,extract,flavor,flavorDefault,flavorOverrides,follow,isOpen,markAsAnimating,open,reset,shiftElements,templateHtml,u,unshiftElements,unshifters,visit;
3
+ return u=up.util,config=u.config({maxWidth:null,minWidth:null,width:null,height:null,history:!0,openAnimation:"fade-in",closeAnimation:"fade-out",openDuration:null,closeDuration:null,openEasing:null,closeEasing:null,backdropOpenAnimation:"fade-in",backdropCloseAnimation:"fade-out",closeLabel:"\xd7",flavors:{"default":{}},template:function(){return'<div class="up-modal">\n <div class="up-modal-backdrop"></div>\n <div class="up-modal-viewport">\n <div class="up-modal-dialog">\n <div class="up-modal-content"></div>\n <div class="up-modal-close" up-close>'+flavorDefault("closeLabel")+"</div>\n </div>\n </div>\n</div>"}}),currentUrl=void 0,currentFlavor=void 0,coveredUrl=function(){return $(".up-modal").attr("up-covered-url")},reset=function(){return close({animation:!1}),currentUrl=void 0,currentFlavor=void 0,config.reset()},templateHtml=function(){var e;return e=flavorDefault("template"),u.isFunction(e)?e(config):e},discardHistory=function(){var e;return e=$(".up-modal"),e.removeAttr("up-covered-url"),e.removeAttr("up-covered-title")},createFrame=function(e,t){var n;return n=u.resolvedPromise(),isOpen()&&(n=n.then(function(){return close()})),n=n.then(function(){var n,r,o;return currentFlavor=t.flavor,o=$(templateHtml()),o.attr("up-flavor",currentFlavor),t.sticky&&o.attr("up-sticky",""),o.attr("up-covered-url",up.browser.url()),o.attr("up-covered-title",document.title),r=o.find(".up-modal-dialog"),u.isPresent(t.width)&&r.css("width",t.width),u.isPresent(t.maxWidth)&&r.css("max-width",t.maxWidth),u.isPresent(t.height)&&r.css("height",t.height),n=o.find(".up-modal-content"),u.$createPlaceholder(e,n),o.appendTo(document.body)})},unshifters=[],shiftElements=function(){var e,t,n,r,o;if(!(unshifters.length>0))return u.documentHasVerticalScrollbar()?(e=$("body"),r=u.scrollbarWidth(),t=parseInt(e.css("padding-right")),n=r+t,o=u.temporaryCss(e,{"padding-right":n+"px","overflow-y":"hidden"}),unshifters.push(o),up.layout.anchoredRight().each(function(){var e,t,n,o;return e=$(this),t=parseInt(e.css("right")),n=r+t,o=u.temporaryCss(e,{right:n}),unshifters.push(o)})):void 0},unshiftElements=function(){var e,t;for(e=[];t=unshifters.pop();)e.push(t());return e},isOpen=function(){return $(".up-modal").length>0},follow=function(e,t){return t=u.options(t),t.$link=$(e),open(t)},visit=function(e,t){return t=u.options(t),t.url=e,open(t)},extract=function(e,t,n){return n=u.options(n),n.html=t,n.history=u.option(n.history,!1),n.target=e,open(n)},open=function(e){var t,n,r,o,i;return e=u.options(e),t=u.option(u.pluckKey(e,"$link"),u.nullJQuery()),i=u.option(u.pluckKey(e,"url"),t.attr("up-href"),t.attr("href")),r=u.option(u.pluckKey(e,"html")),o=u.option(u.pluckKey(e,"target"),t.attr("up-modal"),"body"),e.flavor=u.option(e.flavor,t.attr("up-flavor")),e.width=u.option(e.width,t.attr("up-width"),flavorDefault("width",e.flavor)),e.maxWidth=u.option(e.maxWidth,t.attr("up-max-width"),flavorDefault("maxWidth",e.flavor)),e.height=u.option(e.height,t.attr("up-height"),flavorDefault("height")),e.animation=u.option(e.animation,t.attr("up-animation"),flavorDefault("openAnimation",e.flavor)),e.backdropAnimation=u.option(e.backdropAnimation,t.attr("up-backdrop-animation"),flavorDefault("backdropOpenAnimation",e.flavor)),e.sticky=u.option(e.sticky,u.castedAttr(t,"up-sticky"),flavorDefault("sticky",e.flavor)),e.confirm=u.option(e.confirm,t.attr("up-confirm")),e.method=up.link.followMethod(t,e),n=up.motion.animateOptions(e,t,{duration:flavorDefault("openDuration",e.flavor),easing:flavorDefault("openEasing",e.flavor)}),e.history=u.option(e.history,u.castedAttr(t,"up-history"),flavorDefault("history",e.flavor)),up.browser.canPushState()||(e.history=!1),up.browser.confirm(e).then(function(){var t,a;return up.bus.nobodyPrevents("up:modal:open",{url:i,message:"Opening modal"})?(e.beforeSwap=function(){return createFrame(o,e)},t=u.merge(e,{animation:!1}),a=r?up.extract(o,r,t):up.replace(o,i,t),a=a.then(function(){return shiftElements()}),a=a.then(function(){return animate(e.animation,e.backdropAnimation,n)}),a=a.then(function(){return up.emit("up:modal:opened",{message:"Modal opened"})})):u.unresolvablePromise()})},close=function(e){var t,n,r,o,i;return e=u.options(e),t=$(".up-modal"),t.length?up.bus.nobodyPrevents("up:modal:close",{$element:t,message:"Closing modal"})?(i=u.option(e.animation,flavorDefault("closeAnimation")),r=u.option(e.backdropAnimation,flavorDefault("backdropCloseAnimation")),n=up.motion.animateOptions(e,{duration:flavorDefault("closeDuration"),easing:flavorDefault("closeEasing")}),o=u.resolvedPromise(),o=o.then(function(){return animate(i,r,n)}),o=o.then(function(){var n;return n=u.options(u.except(e,"animation","duration","easing","delay"),{url:t.attr("up-covered-url"),title:t.attr("up-covered-title")}),currentUrl=void 0,up.destroy(t,n)}),o=o.then(function(){return unshiftElements(),currentFlavor=void 0,up.emit("up:modal:closed",{message:"Modal closed"})})):u.unresolvablePromise():u.resolvedPromise()},markAsAnimating=function(e){return null==e&&(e=!0),$(".up-modal").toggleClass("up-modal-animating",e)},animate=function(e,t,n){var r;return up.motion.isNone(e)?u.resolvedPromise():(markAsAnimating(),r=$.when(up.animate($(".up-modal-viewport"),e,n),up.animate($(".up-modal-backdrop"),t,n)),r=r.then(function(){return markAsAnimating(!1)}))},autoclose=function(){return $(".up-modal").is("[up-sticky]")?void 0:(discardHistory(),close())},contains=function(e){var t;return t=$(e),t.closest(".up-modal").length>0},flavor=function(e,t){return null==t&&(t={}),u.extend(flavorOverrides(e),t)},flavorOverrides=function(e){var t;return(t=config.flavors)[e]||(t[e]={})},flavorDefault=function(e,t){var n;return null==t&&(t=currentFlavor),t&&(n=flavorOverrides(t)[e]),u.isMissing(n)&&(n=config[e]),n},up.link.onAction("[up-modal]",function(e){return follow(e)}),up.on("click","body",function(e){var t;return t=$(e.target),t.closest(".up-modal-dialog").length||t.closest("[up-modal]").length?void 0:close()}),up.on("up:fragment:inserted",function(e,t){var n;if(contains(t)){if(n=t.attr("up-source"))return currentUrl=n}else if(!up.popup.contains(t)&&contains(e.origin))return autoclose()}),up.bus.onEscape(function(){return close()}),up.on("click","[up-close]",function(e,t){return t.closest(".up-modal").length?(close(),e.preventDefault()):void 0}),up.on("up:framework:reset",reset),{knife:eval("undefined"!=typeof Knife&&null!==Knife?Knife.point:void 0),visit:visit,follow:follow,extract:extract,open:function(){return up.error("up.modal.open no longer exists. Please use either up.modal.follow or up.modal.visit.")},close:close,url:function(){return currentUrl},coveredUrl:coveredUrl,config:config,defaults:function(){return u.error("up.modal.defaults(...) no longer exists. Set values on he up.modal.config property instead.")},contains:contains,source:function(){return up.error("up.modal.source no longer exists. Please use up.popup.url instead.")},isOpen:isOpen,flavor:flavor}}(jQuery)}.call(this),function(){up.tooltip=function(e){var t,n,r,o,u,i,a;return a=up.util,r=a.config({position:"top",openAnimation:"fade-in",closeAnimation:"fade-out"}),u=function(){return n({animation:!1}),r.reset()},i=function(e,t,n){var r,o,u;switch(r={},u=a.measure(t),a.isFixed(e)?(o=e.get(0).getBoundingClientRect(),r.position="fixed"):o=a.measure(e),n){case"top":r.top=o.top-u.height,r.left=o.left+.5*(o.width-u.width);break;case"left":r.top=o.top+.5*(o.height-u.height),r.left=o.left-u.width;break;case"right":r.top=o.top+.5*(o.height-u.height),r.left=o.left+o.width;break;case"bottom":r.top=o.top+o.height,r.left=o.left+.5*(o.width-u.width);break;default:a.error("Unknown position option '%s'",n)}return t.attr("up-position",n),t.css(r)},o=function(e){var t;return t=a.$createElementFromSelector(".up-tooltip"),a.isGiven(e.text)?t.text(e.text):t.html(e.html),t.appendTo(document.body),t},t=function(t,u){var s,l,c,p,f,d,m;return null==u&&(u={}),s=e(t),f=a.option(u.html,s.attr("up-tooltip-html")),m=a.option(u.text,s.attr("up-tooltip")),d=a.option(u.position,s.attr("up-position"),r.position),p=a.option(u.animation,a.castedAttr(s,"up-animation"),r.openAnimation),c=up.motion.animateOptions(u,s),n(),l=o({text:m,html:f}),i(s,l,d),up.animate(l,p,c)},n=function(t){var n;return n=e(".up-tooltip"),n.length?(t=a.options(t,{animation:r.closeAnimation}),t=a.merge(t,up.motion.animateOptions(t)),up.destroy(n,t)):void 0},up.compiler("[up-tooltip], [up-tooltip-html]",function(e){return e.on("mouseenter",function(){return t(e)}),e.on("mouseleave",function(){return n()})}),up.on("click","body",function(){return n()}),up.on("up:framework:reset",n),up.bus.onEscape(function(){return n()}),up.on("up:framework:reset",u),{attach:t,close:n,open:function(){return a.error("up.tooltip.open no longer exists. Use up.tooltip.attach instead.")}}}(jQuery)}.call(this),function(){var e=[].slice;up.navigation=function(t){var n,r,o,u,i,a,s,l,c,p,f,d,m,v;return f=up.util,o=f.config({currentClasses:["up-current"]}),c=function(){return o.reset()},u=function(){var e;return e=o.currentClasses,e=e.concat(["up-current"]),e=f.uniq(e),e.join(" ")},n="up-active",r="a, [up-href]",l=function(e){return f.isPresent(e)?f.normalizeUrl(e,{search:!1,stripTrailingSlash:!0}):void 0},p=function(e){var t,n,r,o,u,i,a,s,c,p;for(s=[],i=["href","up-href","up-alias"],n=0,o=i.length;o>n;n++)if(t=i[n],c=f.presentAttr(e,t))for(p="up-alias"===t?c.split(" "):[c],r=0,u=p.length;u>r;r++)a=p[r],"#"!==a&&(a=l(a),s.push(a));return s},m=function(e){var t,n,r,o;return e=f.compact(e),r=function(e){return"*"===e.substr(-1)?n(e.slice(0,-1)):t(e)},t=function(t){return f.contains(e,t)},n=function(t){return f.detect(e,function(e){return 0===e.indexOf(t)})},o=function(e){return f.detect(e,r)},{matchesAny:o}},a=function(){var e,n;return e=m([l(up.browser.url()),l(up.modal.url()),l(up.modal.coveredUrl()),l(up.popup.url()),l(up.popup.coveredUrl())]),n=u(),f.each(t(r),function(r){var o,u;return o=t(r),u=p(o),e.matchesAny(u)?o.addClass(n):o.hasClass(n)&&0===o.closest(".up-destroying").length?o.removeClass(n):void 0})},i=function(e,n){var o;return o=t(e),n=f.options(n,{enlarge:!1}),n.enlarge?f.presence(o.parent(r))||o:o},s=function(e,t){var r;return r=i(e,t),r.addClass(n)},d=function(e,t){var r;return r=i(e,t),r.removeClass(n)},v=function(){var n,r,o,u,i,a;return u=arguments[0],r=2<=arguments.length?e.call(arguments,1):[],o=r.pop(),i=f.options(r.pop()),n=t(u),s(n,i),a=o(),f.isPromise(a)?a.always(function(){return d(n,i)}):up.warn("Expected block to return a promise, but got %o",a),a},up.on("up:fragment:inserted",function(){return a()}),up.on("up:fragment:destroyed",function(e,t){return t.is(".up-modal, .up-popup")?a():void 0}),up.on("up:framework:reset",c),{config:o,defaults:function(){return f.error("up.navigation.defaults(...) no longer exists. Set values on he up.navigation.config property instead.")},markActive:s,unmarkActive:d,withActiveMark:v}}(jQuery)}.call(this),function(){up.rails=function(e){var t,n,r,o;return r=up.util,o=function(e){return e.is("[up-follow], [up-target], [up-modal], [up-popup]")},n=function(){return r.isGiven(e.rails)},r.each(["method","confirm"],function(e){var t,u;return t="data-"+e,u="up-"+e,up.compiler("["+t+"]",function(e){var i;return n()&&o(e)?(i={},i[u]=e.attr(t),r.setMissingAttrs(e,i),e.removeAttr(t)):void 0})}),t=function(){return n()?{name:e.rails.csrfParam(),value:e.rails.csrfToken()}:void 0},{csrfField:t,isRails:n}}(jQuery)}.call(this),function(){up.boot()}.call(this);
@@ -280,6 +280,8 @@ up.modal = (($) ->
280
280
  @param {String} [options.confirm]
281
281
  A message that will be displayed in a cancelable confirmation dialog
282
282
  before the modal is being opened.
283
+ @param {String} [options.method="GET"]
284
+ Override the request method.
283
285
  @param {Object} [options.history=true]
284
286
  Whether to add a browser history entry for the modal's source URL.
285
287
  @param {String} [options.animation]
@@ -337,7 +339,7 @@ up.modal = (($) ->
337
339
  Example:
338
340
 
339
341
  var html = 'before <div class="content">inner</div> after';
340
- up.modal.extract('/foo', '.content', html);
342
+ up.modal.extract('.content', html);
341
343
 
342
344
  The would open a modal with the following contents:
343
345
 
@@ -346,8 +348,10 @@ up.modal = (($) ->
346
348
  Emits events [`up:modal:open`](/up:modal:open) and [`up:modal:opened`](/up:modal:opened).
347
349
 
348
350
  @function up.modal.extract
349
- @param {String} url
350
- The URL to load.
351
+ @param {String} selector
352
+ The CSS selector to extract from the HTML.
353
+ @param {String} html
354
+ The HTML containing the modal content.
351
355
  @param {Object} options
352
356
  See options for [`up.modal.follow`](/up.modal.follow).
353
357
  @return {Promise}
@@ -380,6 +384,7 @@ up.modal = (($) ->
380
384
  options.backdropAnimation = u.option(options.backdropAnimation, $link.attr('up-backdrop-animation'), flavorDefault('backdropOpenAnimation', options.flavor))
381
385
  options.sticky = u.option(options.sticky, u.castedAttr($link, 'up-sticky'), flavorDefault('sticky', options.flavor))
382
386
  options.confirm = u.option(options.confirm, $link.attr('up-confirm'))
387
+ options.method = up.link.followMethod($link, options)
383
388
  animateOptions = up.motion.animateOptions(options, $link, duration: flavorDefault('openDuration', options.flavor), easing: flavorDefault('openEasing', options.flavor))
384
389
 
385
390
  # Although we usually fall back to full page loads if a browser doesn't support pushState,
@@ -608,6 +613,8 @@ up.modal = (($) ->
608
613
  @param {String} [up-confirm]
609
614
  A message that will be displayed in a cancelable confirmation dialog
610
615
  before the modal is opened.
616
+ @param {String} [up-method='GET']
617
+ Override the request method.
611
618
  @param {String} [up-sticky]
612
619
  If set to `"true"`, the modal remains
613
620
  open even if the page changes in the background.
@@ -109,55 +109,36 @@ up.popup = (($) ->
109
109
  config.reset()
110
110
 
111
111
  setPosition = ($link, position) ->
112
- linkBox = u.measure($link, full: true)
113
- css = switch position
114
- when "bottom-right"
115
- right: linkBox.right
116
- top: linkBox.top + linkBox.height
117
- when "bottom-left"
118
- left: linkBox.left
119
- top: linkBox.top + linkBox.height
120
- when "top-right"
121
- right: linkBox.right
122
- bottom: linkBox.top
123
- when "top-left"
124
- left: linkBox.left
125
- bottom: linkBox.top
126
- else
127
- u.error("Unknown position option '%s'", position)
112
+ css = {}
113
+
114
+ $popup = $('.up-popup')
115
+ popupBox = u.measure($popup)
116
+
128
117
  if u.isFixed($link)
118
+ linkBox = $link.get(0).getBoundingClientRect()
129
119
  css['position'] = 'fixed'
130
- $popup = $('.up-popup')
120
+ else
121
+ linkBox = u.measure($link)
122
+
123
+ switch position
124
+ when "bottom-right" # anchored to bottom-right of link, opens towards bottom-left
125
+ css['top'] = linkBox.top + linkBox.height
126
+ css['left'] = linkBox.left + linkBox.width - popupBox.width
127
+ when "bottom-left" # anchored to bottom-left of link, opens towards bottom-right
128
+ css['top'] = linkBox.top + linkBox.height
129
+ css['left'] = linkBox.left
130
+ when "top-right" # anchored to top-right of link, opens to top-left
131
+ css['top'] = linkBox.top - popupBox.height
132
+ css['left'] = linkBox.left + linkBox.width - popupBox.width
133
+ when "top-left" # anchored to top-left of link, opens to top-right
134
+ css['top'] = linkBox.top - popupBox.height
135
+ css['left'] = linkBox.left
136
+ else
137
+ u.error("Unknown position option '%s'", position)
138
+
131
139
  $popup.attr('up-position', position)
132
140
  $popup.css(css)
133
- ensureInViewport($popup)
134
-
135
- ensureInViewport = ($popup) ->
136
- box = u.measure($popup, full: true)
137
- errorX = null
138
- errorY = null
139
- if box.right < 0
140
- errorX = -box.right # errorX is positive
141
- if box.bottom < 0
142
- errorY = -box.bottom # errorY is positive
143
- if box.left < 0
144
- errorX = box.left # errorX is negative
145
- if box.top < 0
146
- errorY = box.top # errorY is negative
147
- if errorX
148
- # We use parseInt to:
149
- # 1) convert "50px" to 50
150
- # 2) convert "auto" to NaN
151
- if left = parseInt($popup.css('left'))
152
- $popup.css('left', left - errorX)
153
- else if right = parseInt($popup.css('right'))
154
- $popup.css('right', right + errorX)
155
- if errorY
156
- if top = parseInt($popup.css('top'))
157
- $popup.css('top', top - errorY)
158
- else if bottom = parseInt($popup.css('bottom'))
159
- $popup.css('bottom', bottom + errorY)
160
-
141
+
161
142
  discardHistory = ->
162
143
  $popup = $('.up-popup')
163
144
  $popup.removeAttr('up-covered-url')
@@ -213,6 +194,8 @@ up.popup = (($) ->
213
194
  The delay before the animation starts. See [`up.animate`](/up.animate).
214
195
  @param {String} [options.easing]
215
196
  The timing function that controls the animation's acceleration. [`up.animate`](/up.animate).
197
+ @param {String} [options.method="GET"]
198
+ Override the request method.
216
199
  @param {Boolean} [options.sticky=false]
217
200
  If set to `true`, the popup remains
218
201
  open even if the page changes in the background.
@@ -235,6 +218,7 @@ up.popup = (($) ->
235
218
  options.sticky = u.option(options.sticky, u.castedAttr($link, 'up-sticky'), config.sticky)
236
219
  options.history = if up.browser.canPushState() then u.option(options.history, u.castedAttr($link, 'up-history'), config.history) else false
237
220
  options.confirm = u.option(options.confirm, $link.attr('up-confirm'))
221
+ options.method = up.link.followMethod($link, options)
238
222
  animateOptions = up.motion.animateOptions(options, $link, duration: config.openDuration, easing: config.openEasing)
239
223
 
240
224
  up.browser.confirm(options).then ->
@@ -364,6 +348,8 @@ up.popup = (($) ->
364
348
  @param {String} [up-confirm]
365
349
  A message that will be displayed in a cancelable confirmation dialog
366
350
  before the popup is opened.
351
+ @param {String} [up-method='GET']
352
+ Override the request method.
367
353
  @param [up-sticky]
368
354
  If set to `true`, the popup remains
369
355
  open even if the page changes in the background.