summaryrefslogtreecommitdiff
path: root/src/fauxton/app/addons/config/routes.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/fauxton/app/addons/config/routes.js')
-rw-r--r--src/fauxton/app/addons/config/routes.js10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/fauxton/app/addons/config/routes.js b/src/fauxton/app/addons/config/routes.js
index 6af81572f..cb3f28728 100644
--- a/src/fauxton/app/addons/config/routes.js
+++ b/src/fauxton/app/addons/config/routes.js
@@ -12,14 +12,12 @@
define([
"app",
-
"api",
-
- // Modules
- "addons/config/resources"
+ "addons/config/resources",
+ "addons/config/views"
],
-function(app, FauxtonAPI, Config) {
+function(app, FauxtonAPI, Config, View) {
var ConfigRouteObject = FauxtonAPI.RouteObject.extend({
layout: "one_pane",
@@ -45,7 +43,7 @@ function(app, FauxtonAPI, Config) {
},
config: function () {
- this.setView("#dashboard-content", new Config.View({collection: this.configs}));
+ this.setView("#dashboard-content", new View.Table({collection: this.configs}));
},
establish: function () {