indexCtrl.js 483 B

12345678910111213141516
  1. var indexCtrl = angular.module('indexCtrl', []);
  2. indexCtrl.controller('IndexCtrl', ['$scope', '$location', 'Runs', function($scope, $location, Runs) {
  3. $scope.launchTest = function() {
  4. if ($scope.url) {
  5. Runs.save({
  6. url: $scope.url,
  7. waitForResponse: false
  8. }, function(data) {
  9. console.log(data);
  10. $location.path('/queue/' + data.runId);
  11. });
  12. }
  13. }
  14. }]);