ÿØÿà JFIF H H ÿÛ C ÿÛ Cÿ " ÿÄ ÿÄ ÿÚ ±5¬€ ÿÄ àÿÚ ÿÄ ÀÿÚ ? ÿÄ ÀÿÚ ? ÿÄ àÿÚ ? ÿÄ àÿÚ ?! ÿÚ ÿÄ ÀÿÚ ? ÿÄ ÀÿÚ ? ÿÄ àÿÚ ? ÿÙ
| Server IP : 160.25.81.117 / Your IP : 216.73.216.137 Web Server : Apache/2 System : Linux sv05.hilab.cloud 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : bellizen ( 1045) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/bellizen/domains/bellizeno.com/public_html/public/plugin/waypoint/ |
Upload File : |
/*!
Waypoints Debug - 4.0.1
Copyright © 2011-2016 Caleb Troughton
Licensed under the MIT license.
https://github.com/imakewebthings/waypoints/blob/master/licenses.txt
*/
(function() {
'use strict'
var displayNoneMessage = [
'You have a Waypoint element with display none. For more information on ',
'why this is a bad idea read ',
'http://imakewebthings.com/waypoints/guides/debugging/#display-none'
].join('')
var fixedMessage = [
'You have a Waypoint element with fixed positioning. For more ',
'information on why this is a bad idea read ',
'http://imakewebthings.com/waypoints/guides/debugging/#fixed-position'
].join('')
function checkWaypointStyles() {
var originalRefresh = window.Waypoint.Context.prototype.refresh
window.Waypoint.Context.prototype.refresh = function() {
for (var axis in this.waypoints) {
for (var key in this.waypoints[axis]) {
var waypoint = this.waypoints[axis][key]
var style = window.getComputedStyle(waypoint.element)
if (!waypoint.enabled) {
continue
}
if (style && style.display === 'none') {
console.error(displayNoneMessage)
}
if (style && style.position === 'fixed') {
console.error(fixedMessage)
}
}
}
return originalRefresh.call(this)
}
}
checkWaypointStyles()
}())
;