Здравствуйте, я установил на сайт bitcoin faucet, но после после нажатия на "Получить", идет бесконечная загрузка. Раньше такого не было. Посмотрел по F12, это код
div.trof_global_loader
(Скрин:
)
Нашел код в двух страницах.
.trof_global_loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid blue;
border-right: 16px solid green;
border-bottom: 16px solid red;
border-left: 16px solid yellow;
width: 50px;
height: 50px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
position: fixed; /* or absolute */
top: 50%;
left: 50%;
z-index: 99;
}
setTimeout(function(){
jQuery('.trof_global_loader').hide();
},9000);
jQuery(document).ready(function() {
jQuery('.trof_global_loader').hide();
jQuery('.claim-button').on('click',function (e) {
jQuery('.trof_global_loader').show();
jQuery(this)
.prop("disabled", true);
if ( ('isTrusted' in e.originalEvent) && (!e.originalEvent.isTrusted)) {
jQuery(this).removeClass('btn_wait');
e.preventDefault();
e.stopPropagation();
}
});
});
Как мне удалить эту бесконечную загрузку, и чтобы кран стал работать? Спасибо заранее..