From 414f841944614ecd603bbfcf1721fff26e660a02 Mon Sep 17 00:00:00 2001 From: rr- Date: Thu, 12 May 2016 00:12:48 +0200 Subject: [PATCH] client/tags: fix unbound EmptyView --- client/js/controllers/tags_controller.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/js/controllers/tags_controller.js b/client/js/controllers/tags_controller.js index 8cd261ea..dfead156 100644 --- a/client/js/controllers/tags_controller.js +++ b/client/js/controllers/tags_controller.js @@ -11,6 +11,7 @@ const TagView = require('../views/tag_view.js'); const TagsHeaderView = require('../views/tags_header_view.js'); const TagsPageView = require('../views/tags_page_view.js'); const TagCategoriesView = require('../views/tag_categories_view.js'); +const EmptyView = require('../views/empty_view.js'); class TagsController { constructor() { @@ -18,6 +19,7 @@ class TagsController { this.tagsHeaderView = new TagsHeaderView(); this.tagsPageView = new TagsPageView(); this.tagCategoriesView = new TagCategoriesView(); + this.emptyView = new EmptyView(); } registerRoutes() {