Возможно, что частота обновления favicon.ico сайта зависит от часты обновления самого сайта. Чем чаще на нем появляется свежая информация, тем чаще на неё заходят разные роботы. Для сбора иконок у Яндекса существует отдельный робот. В логах его можно обнаружить примерно в таком виде:
Mozilla/5.0 (compatible; YandexFavicons/1.0; +yandex.com/bots)
По отзывам некоторых пользователей робот Яндекса для сбора favicon.ico заходит на сайты раз в 1-3 месяца.
* Tests if smooth scrolling is allowed. Shuts down everything if not.
*/
function initTest() {
// disable keys for google reader (spacebar conflict)
if (document.URL.indexOf("google.com/reader/view") > -1) {
disableKeyboard = true;
}
// disable everything if the page is blacklisted
if (exclude) {
var domains = exclude.split(/[,\n] ?/);
for (var i = domains.length; i--;) {
if (document.URL.indexOf(domains[i]) > -1) {
removeEvent("mousewheel", wheel);
disableKeyboard = true;
break;
}
}
}
}
function scrollbarWidth() {
var $inner = $('<div style="width:100%; height:200px;"></div>'),
$outer = $('<div style="width:200px;height:150px;position:absolute;top:0;left:0;visibility:hidden;overflow:hidden;"></div>').append($inner),
inner = $inner[0],
outer = $outer[0];
$('body').append(outer);
var width1 = inner.offsetWidth;
$outer.css('overflow', 'scroll');
var width2 = outer.clientWidth;
$outer.remove();
return (width1 - width2);
};
http://www.eurogazstroy.ru/bitrix/cache/js/s1/euro/template_0edfc10eb291a57b138ae73bdf2fb41e/template_0edfc10eb291a57b138ae73bdf2fb41e.js?
if( obj.scrollTop === (obj.scrollHeight - obj.offsetHeight))
{
}
$(window).on("scroll", function () {
var scrollHeight = $(document).height();
var scrollPosition = $(window).height() + $(window).scrollTop();
if ((scrollHeight - scrollPosition) / scrollHeight === 0) {
/* Do something */
}
});