Author: Kamil Tekiela (kamil-tekiela)
Date: 2022-07-13T17:31:07+01:00

Commit: 
https://github.com/php/web-php/commit/6dcd84869756a27c062f037fcf2788b1a5872a5c
Raw diff: 
https://github.com/php/web-php/commit/6dcd84869756a27c062f037fcf2788b1a5872a5c.diff

Move jquery.scrollTo.min.js to a new file

Update footer.inc

Changed paths:
  A  js/ext/jquery.scrollTo.min.js
  M  include/footer.inc
  M  js/common.js


Diff:

diff --git a/include/footer.inc b/include/footer.inc
index 26246b190..a04414a42 100644
--- a/include/footer.inc
+++ b/include/footer.inc
@@ -87,7 +87,7 @@
  <!-- External and third party libraries. -->
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"; 
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" 
crossorigin="anonymous"></script>
 <?php
- $jsfiles = array("ext/hogan-2.0.0.min.js", "ext/typeahead.min.js", 
"ext/mousetrap.min.js", "search.js", "common.js");
+ $jsfiles = array("ext/hogan-2.0.0.min.js", "ext/typeahead.min.js", 
"ext/mousetrap.min.js", "ext/jquery.scrollTo.min.js", "search.js", "common.js");
  foreach ($jsfiles as $filename) {
    $path = dirname(__DIR__).'/js/'.$filename;
    echo '<script src="/cached.php?t=' . @filemtime($path) . '&amp;f=/js/' . 
$filename . '"></script>'."\n";
diff --git a/js/common.js b/js/common.js
index ec6263e8e..a63a6c5a0 100644
--- a/js/common.js
+++ b/js/common.js
@@ -8,17 +8,6 @@ String.prototype.toInt = function() {
   return parseInt(this);
 };
 
-/** {{{
-* jQuery.ScrollTo - Easy element scrolling using jQuery.
-* Copyright (c) 2007-2013 Ariel Flesler - aflesler<a>gmail<d>com | 
http://flesler.blogspot.com
-* Dual licensed under MIT and GPL.
-* @author Ariel Flesler
-* @version 2.1.2
-*/
-;(function(f){"use strict";"function"===typeof 
define&&define.amd?define(["jquery"],f):"undefined"!==typeof 
module&&module.exports?module.exports=f(require("jquery")):f(jQuery)})(function($){"use
 strict";function 
n(a){return!a.nodeName||-1!==$.inArray(a.nodeName.toLowerCase(),["iframe","#document","html","body"])}function
 h(a){return $.isFunction(a)||$.isPlainObject(a)?a:{top:a,left:a}}var 
p=$.scrollTo=function(a,d,b){return 
$(window).scrollTo(a,d,b)};p.defaults={axis:"xy",duration:0,limit:!0};$.fn.scrollTo=function(a,d,b){"object"===
 typeof d&&(b=d,d=0);"function"===typeof 
b&&(b={onAfter:b});"max"===a&&(a=9E9);b=$.extend({},p.defaults,b);d=d||b.duration;var
 
u=b.queue&&1<b.axis.length;u&&(d/=2);b.offset=h(b.offset);b.over=h(b.over);return
 this.each(function(){function k(a){var 
k=$.extend({},b,{queue:!0,duration:d,complete:a&&function(){a.call(q,e,b)}});r.animate(f,k)}if(null!==a){var
 l=n(this),q=l?this.contentWindow||window:this,r=$(q),e=a,f={},t;switch(typeof 
e){case "number":case "string":if(/^([+-]=?)?\d+(\.\d+)?(px|%)?$/.test(e)){e= 
h(e);break}e=l?$(e):$(e,q);case 
"object":if(e.length===0)return;if(e.is||e.style)t=(e=$(e)).offset()}var 
v=$.isFunction(b.offset)&&b.offset(q,e)||b.offset;$.each(b.axis.split(""),function(a,c){var
 
d="x"===c?"Left":"Top",m=d.toLowerCase(),g="scroll"+d,h=r[g](),n=p.max(q,c);t?(f[g]=t[m]+(l?0:h-r.offset()[m]),b.margin&&(f[g]-=parseInt(e.css("margin"+d),10)||0,f[g]-=parseInt(e.css("border"+d+"Width"),10)||0),f[g]+=v[m]||0,b.over[m]&&(f[g]+=e["x"===c?"width":"height"]()*b.over[m])):(d=e[m],f[g]=d.slice&&
 
"%"===d.slice(-1)?parseFloat(d)/100*n:d);b.limit&&/^\d+$/.test(f[g])&&(f[g]=0>=f[g]?0:Math.min(f[g],n));!a&&1<b.axis.length&&(h===f[g]?f={}:u&&(k(b.onAfterFirst),f={}))});k(b.onAfter)}})};p.max=function(a,d){var
 b="x"===d?"Width":"Height",h="scroll"+b;if(!n(a))return 
a[h]-$(a)[b.toLowerCase()]();var 
b="client"+b,k=a.ownerDocument||a.document,l=k.documentElement,k=k.body;return 
Math.max(l[h],k[h])-Math.min(l[b],k[b])};$.Tween.propHooks.scrollLeft=$.Tween.propHooks.scrollTop={get:function(a){return
 $(a.elem)[a.prop]()}, set:function(a){var 
d=this.get(a);if(a.options.interrupt&&a._last&&a._last!==d)return 
$(a.elem).stop();var 
b=Math.round(a.now);d!==b&&($(a.elem)[a.prop](b),a._last=this.get(a))}};return 
p});
-/*}}}*/
-
-
 var PHP_NET = {};
 
 PHP_NET.HEADER_HEIGHT = 52;
diff --git a/js/ext/jquery.scrollTo.min.js b/js/ext/jquery.scrollTo.min.js
new file mode 100644
index 000000000..3559dc915
--- /dev/null
+++ b/js/ext/jquery.scrollTo.min.js
@@ -0,0 +1,8 @@
+/**
+* jQuery.ScrollTo - Easy element scrolling using jQuery.
+* Copyright (c) 2007-2013 Ariel Flesler - aflesler<a>gmail<d>com | 
http://flesler.blogspot.com
+* Dual licensed under MIT and GPL.
+* @author Ariel Flesler
+* @version 2.1.2
+*/
+;(function(f){"use strict";"function"===typeof 
define&&define.amd?define(["jquery"],f):"undefined"!==typeof 
module&&module.exports?module.exports=f(require("jquery")):f(jQuery)})(function($){"use
 strict";function 
n(a){return!a.nodeName||-1!==$.inArray(a.nodeName.toLowerCase(),["iframe","#document","html","body"])}function
 h(a){return $.isFunction(a)||$.isPlainObject(a)?a:{top:a,left:a}}var 
p=$.scrollTo=function(a,d,b){return 
$(window).scrollTo(a,d,b)};p.defaults={axis:"xy",duration:0,limit:!0};$.fn.scrollTo=function(a,d,b){"object"===
 typeof d&&(b=d,d=0);"function"===typeof 
b&&(b={onAfter:b});"max"===a&&(a=9E9);b=$.extend({},p.defaults,b);d=d||b.duration;var
 
u=b.queue&&1<b.axis.length;u&&(d/=2);b.offset=h(b.offset);b.over=h(b.over);return
 this.each(function(){function k(a){var 
k=$.extend({},b,{queue:!0,duration:d,complete:a&&function(){a.call(q,e,b)}});r.animate(f,k)}if(null!==a){var
 l=n(this),q=l?this.contentWindow||window:this,r=$(q),e=a,f={},t;switch(typeof 
e){case "number":case "string":if(/^([+-]=?)?\d+(\.\d+)?(px|%)?$/.test(e)){e= 
h(e);break}e=l?$(e):$(e,q);case 
"object":if(e.length===0)return;if(e.is||e.style)t=(e=$(e)).offset()}var 
v=$.isFunction(b.offset)&&b.offset(q,e)||b.offset;$.each(b.axis.split(""),function(a,c){var
 
d="x"===c?"Left":"Top",m=d.toLowerCase(),g="scroll"+d,h=r[g](),n=p.max(q,c);t?(f[g]=t[m]+(l?0:h-r.offset()[m]),b.margin&&(f[g]-=parseInt(e.css("margin"+d),10)||0,f[g]-=parseInt(e.css("border"+d+"Width"),10)||0),f[g]+=v[m]||0,b.over[m]&&(f[g]+=e["x"===c?"width":"height"]()*b.over[m])):(d=e[m],f[g]=d.slice&&
 
"%"===d.slice(-1)?parseFloat(d)/100*n:d);b.limit&&/^\d+$/.test(f[g])&&(f[g]=0>=f[g]?0:Math.min(f[g],n));!a&&1<b.axis.length&&(h===f[g]?f={}:u&&(k(b.onAfterFirst),f={}))});k(b.onAfter)}})};p.max=function(a,d){var
 b="x"===d?"Width":"Height",h="scroll"+b;if(!n(a))return 
a[h]-$(a)[b.toLowerCase()]();var 
b="client"+b,k=a.ownerDocument||a.document,l=k.documentElement,k=k.body;return 
Math.max(l[h],k[h])-Math.min(l[b],k[b])};$.Tween.propHooks.scrollLeft=$.Tween.propHooks.scrollTop={get:function(a){return
 $(a.elem)[a.prop]()}, set:function(a){var 
d=this.get(a);if(a.options.interrupt&&a._last&&a._last!==d)return 
$(a.elem).stop();var 
b=Math.round(a.now);d!==b&&($(a.elem)[a.prop](b),a._last=this.get(a))}};return 
p});


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to