chrome copy url without http
DT.Game.prototype.updateTimer = function (dtime) {
var sec, min;
this.timer += dtime;
sec = Math.floor(this.timer);
if (sec > Math.floor(this.timer - dtime) ) {
min = Math.floor(sec / 60);
sec = sec % 60;
sec = sec < 10 ? '0' + sec.toString() : sec;
DT.$title.html(min + ':' + sec + ' in digital trip');
}
};
$(window).scroll(function () {
var ControlDivTop = $('#cs_controlDivFix');
$(window).scroll(function () {
if ($(this).scrollTop() > 50) {
ControlDivTop.stop().animate({ 'top': ($(this).scrollTop() - 62) + "px" }, 600);
} else {
ControlDivTop.stop().animate({ 'top': ($(this).scrollTop()) + "px" },600);
}
});
});
content: url("../img/main-header__title-img.png");
left: 12px;
position: absolute;
top: 1px;