modules/admin-full: reverse time labels in realtime stats (#386)

This commit is contained in:
Jo-Philipp Wich 2012-03-04 14:06:30 +00:00
parent 7b402d1964
commit 9de7ff8e69
4 changed files with 9 additions and 9 deletions

View file

@ -147,7 +147,7 @@ $Id$
/* plot horizontal time interval lines */
for (var i = step * 60; i < width; i += step * 60)
for (var i = width % (step * 60); i < width; i += step * 60)
{
var line = G.createElementNS('http://www.w3.org/2000/svg', 'line');
line.setAttribute('x1', i);
@ -160,7 +160,7 @@ $Id$
text.setAttribute('x', i + 5);
text.setAttribute('y', 15);
text.setAttribute('style', 'fill:#999999; font-size:9pt');
text.appendChild(G.createTextNode(Math.round(i / step / 60) + 'm'));
text.appendChild(G.createTextNode(Math.round((width - i) / step / 60) + 'm'));
label_25.parentNode.appendChild(line);
label_25.parentNode.appendChild(text);

View file

@ -119,7 +119,7 @@ $Id$
/* plot horizontal time interval lines */
for (var i = step * 60; i < width; i += step * 60)
for (var i = width % (step * 60); i < width; i += step * 60)
{
var line = G.createElementNS('http://www.w3.org/2000/svg', 'line');
line.setAttribute('x1', i);
@ -132,7 +132,7 @@ $Id$
text.setAttribute('x', i + 5);
text.setAttribute('y', 15);
text.setAttribute('style', 'fill:#999999; font-size:9pt');
text.appendChild(G.createTextNode(Math.round(i / step / 60) + 'm'));
text.appendChild(G.createTextNode(Math.round((width - i) / step / 60) + 'm'));
label_25.parentNode.appendChild(line);
label_25.parentNode.appendChild(text);

View file

@ -116,7 +116,7 @@ $Id$
/* plot horizontal time interval lines */
for (var i = step * 60; i < width; i += step * 60)
for (var i = width % (step * 60); i < width; i += step * 60)
{
var line = G.createElementNS('http://www.w3.org/2000/svg', 'line');
line.setAttribute('x1', i);
@ -129,7 +129,7 @@ $Id$
text.setAttribute('x', i + 5);
text.setAttribute('y', 15);
text.setAttribute('style', 'fill:#999999; font-size:9pt');
text.appendChild(G.createTextNode(Math.round(i / step / 60) + 'm'));
text.appendChild(G.createTextNode(Math.round((width - i) / step / 60) + 'm'));
label_25.parentNode.appendChild(line);
label_25.parentNode.appendChild(text);

View file

@ -139,7 +139,7 @@ $Id$
/* plot horizontal time interval lines */
for (var i = step * 60; i < width; i += step * 60)
for (var i = width % (step * 60); i < width; i += step * 60)
{
var line = G.createElementNS('http://www.w3.org/2000/svg', 'line');
line.setAttribute('x1', i);
@ -152,7 +152,7 @@ $Id$
text.setAttribute('x', i + 5);
text.setAttribute('y', 15);
text.setAttribute('style', 'fill:#999999; font-size:9pt');
text.appendChild(G.createTextNode(Math.round(i / step / 60) + 'm'));
text.appendChild(G.createTextNode(Math.round((width - i) / step / 60) + 'm'));
label_25.parentNode.appendChild(line);
label_25.parentNode.appendChild(text);
@ -169,7 +169,7 @@ $Id$
text2.setAttribute('x', i + 5);
text2.setAttribute('y', 15);
text2.setAttribute('style', 'fill:#999999; font-size:9pt');
text2.appendChild(G.createTextNode(Math.round(i / step / 60) + 'm'));
text2.appendChild(G.createTextNode(Math.round((width - i) / step / 60) + 'm'));
label_25_2.parentNode.appendChild(line2);
label_25_2.parentNode.appendChild(text2);