From 33def6baee159a2d30771885bc23de108be7b744 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Wed, 28 Mar 2012 14:58:13 +0300 Subject: [PATCH] Require search dropdown class in search container. Previously it happened to be required by search controller. But one shouldn't rely on such a coincidence - each view should declare all the classes it depends on. --- template/app/controller/Search.js | 4 ---- template/app/view/search/Container.js | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/template/app/controller/Search.js b/template/app/controller/Search.js index 5f2a0f6a..2ebeaff3 100644 --- a/template/app/controller/Search.js +++ b/template/app/controller/Search.js @@ -9,10 +9,6 @@ Ext.define('Docs.controller.Search', { 'Docs.History' ], - views: [ - 'search.Dropdown' - ], - stores: ['Search'], refs: [ diff --git a/template/app/view/search/Container.js b/template/app/view/search/Container.js index 60e67a5a..30b7a97d 100644 --- a/template/app/view/search/Container.js +++ b/template/app/view/search/Container.js @@ -4,6 +4,7 @@ Ext.define('Docs.view.search.Container', { extend: 'Ext.container.Container', alias: 'widget.searchcontainer', + requires: 'Docs.view.search.Dropdown', initComponent: function() { -- GitLab