mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
HTML: Fix listlib whitespace errors.
Fix some code style and whitespace errors. [Dirk Hohndel: one hunk didn't apply as there was no such code...?] Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com> Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
023187a73e
commit
a110b2858d
1 changed files with 88 additions and 73 deletions
|
@ -666,15 +666,7 @@ function rgb(r, g, b)
|
||||||
r = Math.floor(r * 255);
|
r = Math.floor(r * 255);
|
||||||
g = Math.floor(g * 255);
|
g = Math.floor(g * 255);
|
||||||
b = Math.floor(b * 255);
|
b = Math.floor(b * 255);
|
||||||
return[
|
return["rgb(", r, ",", g, ",", b, ")"].join("");
|
||||||
"rgb(",
|
|
||||||
r,
|
|
||||||
",",
|
|
||||||
g,
|
|
||||||
",",
|
|
||||||
b,
|
|
||||||
")"
|
|
||||||
].join("");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -876,12 +868,14 @@ function mkelvin_to_C(mkelvin)
|
||||||
return (mkelvin - ZERO_C_IN_MKELVIN) / 1000.0;
|
return (mkelvin - ZERO_C_IN_MKELVIN) / 1000.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
function mbar_to_bar(mbar){
|
function mbar_to_bar(mbar)
|
||||||
return mbar/1000;
|
{
|
||||||
|
return mbar / 1000;
|
||||||
}
|
}
|
||||||
|
|
||||||
function mm_to_meter(mm){
|
function mm_to_meter(mm)
|
||||||
return mm/(1000);
|
{
|
||||||
|
return mm / (1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
var plot1;
|
var plot1;
|
||||||
|
@ -890,66 +884,86 @@ var plot1;
|
||||||
*Main canvas draw function
|
*Main canvas draw function
|
||||||
*this calls the axis and grid initialization functions.
|
*this calls the axis and grid initialization functions.
|
||||||
*/
|
*/
|
||||||
function canvas_draw(){
|
function canvas_draw()
|
||||||
document.getElementById("chart1").innerHTML="";
|
{
|
||||||
|
document.getElementById("chart1").innerHTML = "";
|
||||||
var d1 = new Array();
|
var d1 = new Array();
|
||||||
var d2 = new Array();
|
var d2 = new Array();
|
||||||
for (var i =0; i< items[dive_id].samples.length;i++){
|
for (var i = 0; i < items[dive_id].samples.length; i++) {
|
||||||
d1.push([items[dive_id].samples[i][0]/60,-1*mm_to_meter(items[dive_id].samples[i][1])]);
|
d1.push([
|
||||||
if (items[dive_id].samples[i][2]!=0) {
|
items[dive_id].samples[i][0] / 60,
|
||||||
d2.push([items[dive_id].samples[i][0]/60,mbar_to_bar(items[dive_id].samples[i][2])]);
|
-1 * mm_to_meter(items[dive_id].samples[i][1])
|
||||||
|
]);
|
||||||
|
if (items[dive_id].samples[i][2] != 0) {
|
||||||
|
d2.push([
|
||||||
|
items[dive_id].samples[i][0] / 60,
|
||||||
|
mbar_to_bar(items[dive_id].samples[i][2])
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
plot1 = $.jqplot('chart1', [d1,d2], {
|
plot1 = $.jqplot('chart1', [
|
||||||
grid: {
|
d1,
|
||||||
drawBorder: true,
|
d2
|
||||||
shadow: false,
|
],
|
||||||
background: 'rgba(0,0,0,0)'
|
{
|
||||||
},
|
grid : {
|
||||||
highlighter: { show: true },
|
drawBorder : true,
|
||||||
seriesDefaults: {
|
shadow : false,
|
||||||
shadowAlpha: 0.1,
|
background : 'rgba(0,0,0,0)'
|
||||||
shadowDepth: 2,
|
},
|
||||||
fillToZero: true
|
highlighter : {
|
||||||
},
|
show : true
|
||||||
series: [{
|
},
|
||||||
color: 'rgba(35,58,58,.6)',
|
seriesDefaults : {
|
||||||
negativeColor: 'rgba(35,58,58,.6)',
|
shadowAlpha : 0.1,
|
||||||
showMarker: true,
|
shadowDepth : 2,
|
||||||
showLine: true,
|
fillToZero : true
|
||||||
fill: true,
|
},
|
||||||
yaxis:'yaxis',
|
series :[
|
||||||
},{
|
{
|
||||||
color: 'rgba(44, 190, 160, 0.7)',
|
color : 'rgba(35,58,58,.6)',
|
||||||
showMarker: false,
|
negativeColor : 'rgba(35,58,58,.6)',
|
||||||
rendererOptions: {
|
showMarker : true,
|
||||||
smooth: true,
|
showLine : true,
|
||||||
},
|
fill : true,
|
||||||
yaxis:'y2axis',
|
yaxis : 'yaxis',
|
||||||
},],
|
},
|
||||||
axes: {
|
{
|
||||||
xaxis: {
|
color : 'rgba(44, 190, 160, 0.7)',
|
||||||
pad: 1.0,
|
showMarker : false,
|
||||||
tickRenderer: $.jqplot.CanvasAxisTickRenderer ,
|
rendererOptions : {
|
||||||
tickOptions: {
|
smooth : true,
|
||||||
showGridline: false,
|
},
|
||||||
formatString:'%i min',
|
yaxis : 'y2axis',
|
||||||
angle: -30
|
},
|
||||||
}
|
],
|
||||||
},
|
axes : {
|
||||||
yaxis: {
|
xaxis : {
|
||||||
max: 0,
|
pad : 1.0,
|
||||||
tickRenderer: $.jqplot.CanvasAxisTickRenderer ,
|
tickRenderer : $.jqplot.CanvasAxisTickRenderer,
|
||||||
tickOptions:{ formatString:'%.2f'},
|
tickOptions : {
|
||||||
pad: 2.05
|
showGridline : false,
|
||||||
},
|
formatString : '%i min',
|
||||||
y2axis: {
|
angle : -30
|
||||||
tickRenderer: $.jqplot.CanvasAxisTickRenderer ,
|
}
|
||||||
tickOptions:{ formatString:'%ibar'},
|
},
|
||||||
pad: 3.05
|
yaxis : {
|
||||||
},
|
max : 0,
|
||||||
}
|
tickRenderer : $.jqplot.CanvasAxisTickRenderer,
|
||||||
});
|
tickOptions : {
|
||||||
|
formatString : '%.2f'
|
||||||
|
},
|
||||||
|
pad : 2.05
|
||||||
|
},
|
||||||
|
y2axis : {
|
||||||
|
tickRenderer : $.jqplot.CanvasAxisTickRenderer,
|
||||||
|
tickOptions : {
|
||||||
|
formatString : '%ibar'
|
||||||
|
},
|
||||||
|
pad : 3.05
|
||||||
|
},
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -970,7 +984,7 @@ function showDiveDetails(dive)
|
||||||
//draw the canvas and initialize the view
|
//draw the canvas and initialize the view
|
||||||
document.getElementById("diveinfo").innerHTML = get_dive_HTML(items[dive_id]);
|
document.getElementById("diveinfo").innerHTML = get_dive_HTML(items[dive_id]);
|
||||||
document.getElementById("dive_equipments").innerHTML = get_cylinders_HTML(items[dive_id]);
|
document.getElementById("dive_equipments").innerHTML = get_cylinders_HTML(items[dive_id]);
|
||||||
document.getElementById("bookmarks").innerHTML=get_bookmarks_HTML(items[dive_id]);
|
document.getElementById("bookmarks").innerHTML = get_bookmarks_HTML(items[dive_id]);
|
||||||
setDiveTitle(items[dive_id]);
|
setDiveTitle(items[dive_id]);
|
||||||
|
|
||||||
//hide the list of dives and show the canvas.
|
//hide the list of dives and show the canvas.
|
||||||
|
@ -979,10 +993,11 @@ function showDiveDetails(dive)
|
||||||
canvas_draw();
|
canvas_draw();
|
||||||
}
|
}
|
||||||
|
|
||||||
function setDiveTitle(dive){
|
function setDiveTitle(dive)
|
||||||
document.getElementById("dive_no").innerHTML="Dive No. "+(settings.subsurfaceNumbers === '0'?
|
{
|
||||||
|
document.getElementById("dive_no").innerHTML="Dive No. " + (settings.subsurfaceNumbers === '0'?
|
||||||
dive.number : dive.subsurface_number);
|
dive.number : dive.subsurface_number);
|
||||||
document.getElementById("dive_location").innerHTML=dive.location;
|
document.getElementById("dive_location").innerHTML = dive.location;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue