1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-23 16:25:22 +03:00

Merge pull request #1052 from cmengler/strict-directive-fixes

Fixed 'use strict' directives
This commit is contained in:
Michael Keller 2018-06-16 15:05:57 +12:00 committed by GitHub
commit 7908f0274f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
'use strict;'
'use strict';
var Beepers = function (config, supportedConditions) {
var self = this;

View file

@ -1,4 +1,4 @@
'use strict;'
'use strict';
var Features = function (config) {
var self = this;

View file

@ -1,4 +1,4 @@
'use strict;'
'use strict';
var ReleaseChecker = function (releaseName, releaseUrl) {
var self = this;