1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 00:05:33 +03:00

enable strict mode in couple more files

This commit is contained in:
cTn 2014-08-09 20:01:17 +02:00
parent 36f456d2e7
commit 20e6ad0074
10 changed files with 21 additions and 2 deletions

View file

@ -1,3 +1,5 @@
'use strict';
tabs.sensors = {};
tabs.sensors.initialize = function(callback) {
GUI.active_tab_ref = this;
@ -102,7 +104,7 @@ tabs.sensors.initialize = function(callback) {
}
function drawGraph(graphHelpers, data, sampleNumber) {
svg = d3.select(graphHelpers.selector);
var svg = d3.select(graphHelpers.selector);
if (graphHelpers.dynamicHeightDomain) {
var limits = [];