diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-12-23 16:19:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-23 16:19:54 +0100 |
commit | ed2fff193eca9e5407e42a32e54eef02daca0fb7 (patch) | |
tree | 29093fd442888ffa5446dba6142ab93d3290ab7a /server/sonar-web/src/main/js/app/index.js | |
parent | cc65eb695394d533c0124c53742a5bb36f948a70 (diff) | |
download | sonarqube-ed2fff193eca9e5407e42a32e54eef02daca0fb7.tar.gz sonarqube-ed2fff193eca9e5407e42a32e54eef02daca0fb7.zip |
SONAR-8554 Load and display page extensions (#1482)
Diffstat (limited to 'server/sonar-web/src/main/js/app/index.js')
-rw-r--r-- | server/sonar-web/src/main/js/app/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/app/index.js b/server/sonar-web/src/main/js/app/index.js index edca4bb505c..33ec72df68c 100644 --- a/server/sonar-web/src/main/js/app/index.js +++ b/server/sonar-web/src/main/js/app/index.js @@ -21,6 +21,7 @@ import configureLocale from './utils/configureLocale'; import exposeLibraries from './utils/exposeLibraries'; import startAjaxMonitoring from './utils/startAjaxMonitoring'; import startReactApp from './utils/startReactApp'; +import installExtensionsHandler from './utils/installExtensionsHandler'; import { installGlobal } from '../helpers/l10n'; import './styles/index'; @@ -39,3 +40,4 @@ startAjaxMonitoring(); installGlobal(); startReactApp(); exposeLibraries(); +installExtensionsHandler(); |