Browse Source

Fix url not sent

Gaël Métais 10 years ago
parent
commit
dc9aa4d6b4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      front/src/js/controllers/indexCtrl.js

+ 1 - 1
front/src/js/controllers/indexCtrl.js

@@ -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);
         }
     };
 }]);