From f2a933c51b8365095dc646489b83854dcd5e4a45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20M=C3=A9tais?= Date: Sat, 1 Aug 2015 18:44:49 +0200 Subject: [PATCH] Remove uneeded function --- front/src/js/controllers/dashboardCtrl.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/front/src/js/controllers/dashboardCtrl.js b/front/src/js/controllers/dashboardCtrl.js index 38b3f95..b8f2115 100644 --- a/front/src/js/controllers/dashboardCtrl.js +++ b/front/src/js/controllers/dashboardCtrl.js @@ -30,10 +30,6 @@ dashboardCtrl.controller('DashboardCtrl', ['$scope', '$rootScope', '$routeParams $scope.tweetText = 'I\'ve discovered this cool open-source tool that audits the front-end quality of a web page: '; } - $scope.showRulePage = function(ruleName) { - $location.path('/result/' + $scope.runId + '/rule/' + ruleName); - }; - $scope.testAgain = function() { API.relaunchTest($scope.result); };