From 9018d34383738afe313451a16790f7e87ca25079 Mon Sep 17 00:00:00 2001 From: Jack Pearkes Date: Fri, 25 Apr 2014 13:36:48 -0400 Subject: [PATCH] ui: add kv to nav, embed --- ui/index.html | 2 +- ui/javascripts/app.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/index.html b/ui/index.html index dce0041d15..96a115c544 100644 --- a/ui/index.html +++ b/ui/index.html @@ -37,7 +37,7 @@
- Key/Value + {{#link-to 'kv' class='btn btn-default'}}Key/Value{{/link-to}}
diff --git a/ui/javascripts/app.js b/ui/javascripts/app.js index 21f944e1fc..27404a8628 100755 --- a/ui/javascripts/app.js +++ b/ui/javascripts/app.js @@ -13,10 +13,10 @@ App.Router.map(function() { this.resource("nodes", { path: "/nodes" }, function() { this.route("show", { path: "/:name" }); }); + this.resource("kv", { path: "/kv" }); }); this.route("index", { path: "/" }); - this.route("kv", { path: "/:dc/kv" }); });