mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-05-22 18:11:52 -04:00
fix trailing whitespace in Javascript
I want to make travis-ci enforce that everything passes lint. Get it in a good state first.
This commit is contained in:
parent
8adf6f4bc7
commit
ee3da33470
@ -65,7 +65,7 @@ export default class Range {
|
|||||||
* Determine if value is inside the range.
|
* Determine if value is inside the range.
|
||||||
*
|
*
|
||||||
* @param {Number} value Value to test
|
* @param {Number} value Value to test
|
||||||
* @return {Boolean}
|
* @return {Boolean}
|
||||||
*/
|
*/
|
||||||
isInRange(value) {
|
isInRange(value) {
|
||||||
return value >= this.low && value <= this.high;
|
return value >= this.low && value <= this.high;
|
||||||
|
@ -75,7 +75,7 @@ export default class RecordingFormatter {
|
|||||||
/**
|
/**
|
||||||
* Produce an object whose properties are individual pieces of a recording's
|
* Produce an object whose properties are individual pieces of a recording's
|
||||||
* data, formatted for display purposes.
|
* data, formatted for display purposes.
|
||||||
*
|
*
|
||||||
* @param {Recording} recording Recording to be formatted
|
* @param {Recording} recording Recording to be formatted
|
||||||
* @param {Range90k} trimRange Optional time range for trimming the
|
* @param {Range90k} trimRange Optional time range for trimming the
|
||||||
* recording's interval
|
* recording's interval
|
||||||
|
Loading…
x
Reference in New Issue
Block a user