mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-24 08:45:28 +03:00
Merge pull request #1052 from cmengler/strict-directive-fixes
Fixed 'use strict' directives
This commit is contained in:
commit
7908f0274f
3 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
'use strict;'
|
'use strict';
|
||||||
|
|
||||||
var Beepers = function (config, supportedConditions) {
|
var Beepers = function (config, supportedConditions) {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
'use strict;'
|
'use strict';
|
||||||
|
|
||||||
var Features = function (config) {
|
var Features = function (config) {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
'use strict;'
|
'use strict';
|
||||||
|
|
||||||
var ReleaseChecker = function (releaseName, releaseUrl) {
|
var ReleaseChecker = function (releaseName, releaseUrl) {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue