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".
test-unit-sauce
Erin Altenhof-Long 10 years ago
parent 9bcaec14ee
commit df5bf33762

@ -69,7 +69,7 @@ angular.module('ngHintUI')
$scope.setType = function(type) {
$scope.type = type;
}
$scope.setModule('Directives');
$scope.setModule('All');
$scope.setType('All Messages');
}]);