better variable naming

This commit is contained in:
Marco Vito Moscaritolo 2014-04-21 18:13:05 +02:00
parent 01f3d728ef
commit 02696c8bca

View File

@ -130,7 +130,7 @@ function (angular, _, kbn) {
}); });
} }
InfluxDatasource.prototype.doInfluxRequest = function(query, name) { InfluxDatasource.prototype.doInfluxRequest = function(query, label) {
var _this = this; var _this = this;
var deferred = $q.defer(); var deferred = $q.defer();
@ -151,7 +151,7 @@ function (angular, _, kbn) {
}; };
return $http(options).success(function (data) { return $http(options).success(function (data) {
data.label = name; data.label = label;
deferred.resolve(data); deferred.resolve(data);
}); });
}, 10); }, 10);