grim/port-authority

only show the debug pane if debug is set to true
feature/semantic-ui
2015-03-12, Gary Kramlich
8c34ca6b2ca4
Parents 2c686e5dc7c2
Children aa6d9506f85d
only show the debug pane if debug is set to true
--- a/html/window.html Thu Mar 12 23:28:13 2015 -0500
+++ b/html/window.html Thu Mar 12 23:29:24 2015 -0500
@@ -36,7 +36,7 @@
</div>
</div>
</div>
- <div class="row">
+ <div class="row" data-ng-if="debug">
<div class="column">
<div class="ui icon message">
<i class="icon bug"></i>
--- a/js/app.js Thu Mar 12 23:28:13 2015 -0500
+++ b/js/app.js Thu Mar 12 23:29:24 2015 -0500
@@ -23,7 +23,7 @@
});
function ManifestController($scope, manifestREST) {
- $scope.debug = false;
+ $scope.debug = true;
$scope.refreshing = false;
$scope.refreshing_repo = false;
$scope.registry = "registry.hub.docker.com";