diff options
author | Chocobozzz <me@florianbigard.com> | 2019-07-23 12:16:34 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-07-24 10:58:16 +0200 |
commit | c9e3eeedad67649d9b7aec8897b738d0ad63ec1f (patch) | |
tree | 97590f0e9d4c16c0968ba6f6ff1b1d12672f999b /client/src/app/search/search.component.ts | |
parent | 5b77537ce54832f47931ba47dc513be2a9197f92 (diff) | |
download | PeerTube-c9e3eeedad67649d9b7aec8897b738d0ad63ec1f.tar.gz PeerTube-c9e3eeedad67649d9b7aec8897b738d0ad63ec1f.tar.zst PeerTube-c9e3eeedad67649d9b7aec8897b738d0ad63ec1f.zip |
Lazy load client script scopes
Diffstat (limited to 'client/src/app/search/search.component.ts')
-rw-r--r-- | client/src/app/search/search.component.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/client/src/app/search/search.component.ts b/client/src/app/search/search.component.ts index 691e57619..5c4bb9379 100644 --- a/client/src/app/search/search.component.ts +++ b/client/src/app/search/search.component.ts | |||
@@ -53,8 +53,6 @@ export class SearchComponent implements OnInit, OnDestroy { | |||
53 | } | 53 | } |
54 | 54 | ||
55 | ngOnInit () { | 55 | ngOnInit () { |
56 | this.pluginService.loadPluginsByScope('search') | ||
57 | |||
58 | this.subActivatedRoute = this.route.queryParams.subscribe( | 56 | this.subActivatedRoute = this.route.queryParams.subscribe( |
59 | queryParams => { | 57 | queryParams => { |
60 | const querySearch = queryParams['search'] | 58 | const querySearch = queryParams['search'] |
@@ -80,7 +78,7 @@ export class SearchComponent implements OnInit, OnDestroy { | |||
80 | err => this.notifier.error(err.text) | 78 | err => this.notifier.error(err.text) |
81 | ) | 79 | ) |
82 | 80 | ||
83 | this.hooks.runAction('action:search.init') | 81 | this.hooks.runAction('action:search.init', 'search') |
84 | } | 82 | } |
85 | 83 | ||
86 | ngOnDestroy () { | 84 | ngOnDestroy () { |