Fix url not sent

This commit is contained in:
Gaël Métais
2015-02-06 12:15:20 +01:00
parent 5f2553047d
commit dc9aa4d6b4
+1 -1
View File
@@ -3,7 +3,7 @@ var indexCtrl = angular.module('indexCtrl', []);
indexCtrl.controller('IndexCtrl', ['$scope', '$location', 'API', function($scope, $location, API) {
$scope.launchTest = function() {
if ($scope.url) {
API.launchTest();
API.launchTest($scope.url);
}
};
}]);