mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-12-27 07:21:08 +01:00
more linting
This commit is contained in:
@@ -93,7 +93,7 @@ module.exports = function(RED) {
|
||||
}
|
||||
}
|
||||
else if (annotation.labelLocation === "bottom") {
|
||||
y = y + (10+h+(((defaultLineWidth*0.5)+(Number(defaultFontSize)))));
|
||||
y = y + (10+h+((defaultLineWidth*0.5)+(Number(defaultFontSize))));
|
||||
ctx.textBaseline = "bottom";
|
||||
|
||||
}
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
module.exports = function(RED) {
|
||||
"use strict";
|
||||
|
||||
function convertDegreesMinutesSecondsToDecimals(degrees, minutes, seconds) {
|
||||
var result;
|
||||
result = degrees + (minutes / 60) + (seconds / 3600);
|
||||
return result;
|
||||
}
|
||||
// function convertDegreesMinutesSecondsToDecimals(degrees, minutes, seconds) {
|
||||
// var result;
|
||||
// result = degrees + (minutes / 60) + (seconds / 3600);
|
||||
// return result;
|
||||
// }
|
||||
|
||||
function ExifNode(n) {
|
||||
RED.nodes.createNode(this,n);
|
||||
|
||||
Reference in New Issue
Block a user