From df5bf337624506b705d6ecb7209cbe3cae562135 Mon Sep 17 00:00:00 2001 From: Erin Altenhof-Long Date: Mon, 11 Aug 2014 11:51:30 -0700 Subject: [PATCH] fix(defaultPane): change default console pane to "All" Using "Directives" as the default message pane caused errors when using AngularHint without any errors from "Directives". This changes the default to "All". --- HintCtrl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HintCtrl.js b/HintCtrl.js index a111729..5a6fe0b 100644 --- a/HintCtrl.js +++ b/HintCtrl.js @@ -69,7 +69,7 @@ angular.module('ngHintUI') $scope.setType = function(type) { $scope.type = type; } - $scope.setModule('Directives'); + $scope.setModule('All'); $scope.setType('All Messages'); }]);