mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-24 11:15:21 +01:00
Removed Clock
This commit is contained in:
parent
76ed27638a
commit
9ca8f8dc64
Binary file not shown.
Before Width: | Height: | Size: 481 B |
Binary file not shown.
Before Width: | Height: | Size: 490 B |
41
web/map.js
41
web/map.js
@ -28,47 +28,6 @@ DynMapType.prototype = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
function MinecraftClock(element) { this.element = element; }
|
|
||||||
MinecraftClock.prototype = {
|
|
||||||
element: null,
|
|
||||||
timeout: null,
|
|
||||||
time: null,
|
|
||||||
create: function(element) {
|
|
||||||
if (!element) element = $('<div/>');
|
|
||||||
this.element = element;
|
|
||||||
return element;
|
|
||||||
},
|
|
||||||
setTime: function(time) {
|
|
||||||
if (this.timeout != null) {
|
|
||||||
window.clearTimeout(this.timeout);
|
|
||||||
this.timeout = null;
|
|
||||||
}
|
|
||||||
this.time = time;
|
|
||||||
this.element
|
|
||||||
.addClass((time.day <= 4) ? 'day' : 'night')
|
|
||||||
.removeClass((time.day <= 4) ? 'day' : 'night')
|
|
||||||
.text(this.formatTime(time));
|
|
||||||
|
|
||||||
if (this.timeout == null) {
|
|
||||||
var me = this;
|
|
||||||
this.timeout = window.setTimeout(function() {
|
|
||||||
me.timeout = null;
|
|
||||||
me.setTime(getMinecraftTime(me.time.servertime+(1000/60)));
|
|
||||||
}, 700);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
formatTime: function(time) {
|
|
||||||
var formatDigits = function(n, digits) {
|
|
||||||
var s = n.toString();
|
|
||||||
while (s.length < digits) {
|
|
||||||
s = '0' + s;
|
|
||||||
}
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
return formatDigits(time.hours, 2) + ':' + formatDigits(time.minutes, 2);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
function MinecraftTimeOfDay(element) { this.element = element; }
|
function MinecraftTimeOfDay(element) { this.element = element; }
|
||||||
MinecraftTimeOfDay.prototype = {
|
MinecraftTimeOfDay.prototype = {
|
||||||
element: null,
|
element: null,
|
||||||
|
@ -69,14 +69,6 @@ a, a:visited, label {
|
|||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.clock {
|
|
||||||
padding-left: 16px;
|
|
||||||
color: #dede90;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
.clock.night { background-image: url(clock_night.png); }
|
|
||||||
.clock.day { background-image: url(clock_day.png); }
|
|
||||||
|
|
||||||
.compass {
|
.compass {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-image: url(compass.png);
|
background-image: url(compass.png);
|
||||||
|
Loading…
Reference in New Issue
Block a user