moonfire-nvr/ui-src/lib/views
Scott Lamb 9d6dec2565 fix incorrect Javascript private variable style
It's supposed to be a trailing underscore, not a leading underscore, as
described here:

https://google.github.io/styleguide/jsguide.html#naming-method-names
https://google.github.io/styleguide/jsguide.html#naming-non-constant-field-names

and discussed in an earlier PR:

https://github.com/scottlamb/moonfire-nvr/pull/48#discussion_r175678736

I fixed these mechanically:

rg -l0 'this[.]_' | xargs -0 perl -pi -e 's/this[.]_(\w+)/this.$1_/g'
rg -l0 '\s_\w+\(' | xargs -0 perl -pi -e 's/_(\w+)\(/$1_(/g'
2020-03-14 15:20:18 -07:00
..
CalendarView.js fix incorrect Javascript private variable style 2020-03-14 15:20:18 -07:00
DatePickerView.js fix incorrect Javascript private variable style 2020-03-14 15:20:18 -07:00
NVRSettingsView.js fix incorrect Javascript private variable style 2020-03-14 15:20:18 -07:00
RecordingsView.js fix incorrect Javascript private variable style 2020-03-14 15:20:18 -07:00
StreamSelectorView.js fix incorrect Javascript private variable style 2020-03-14 15:20:18 -07:00
StreamView.js fix incorrect Javascript private variable style 2020-03-14 15:20:18 -07:00
VideoDialogView.js fix incorrect Javascript private variable style 2020-03-14 15:20:18 -07:00