mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Fix - Logo should say "Lighting" not "Lightning" (#1510)
* Fix #1505 - Logo should say "Lighting" not "Lightning" * Address LGTM findings * Specify an image theme using html, as fragmented approach
This commit is contained in:
@@ -384,7 +384,7 @@
|
||||
|
||||
// Check if the restore to Latin number flag is set:
|
||||
if ( integer ) {
|
||||
if ( parseFloat( num, 10 ) === num ) {
|
||||
if ( parseFloat( num, 10 ) === num ) { //lgtm [js/superfluous-trailing-arguments]
|
||||
return num;
|
||||
}
|
||||
|
||||
@@ -405,7 +405,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
return integer ? parseFloat( convertedNumber, 10 ) : convertedNumber;
|
||||
return integer ? parseFloat( convertedNumber, 10 ) : convertedNumber; //lgtm [js/superfluous-trailing-arguments]
|
||||
},
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user