diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-06-22 12:14:27 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-06-22 12:14:27 +0200 |
commit | f97ab42e67c2597f9fd0f065a0b63d8e530a3a38 (patch) | |
tree | 2a7aafbab08b0ada2f5c042e04f2f75a2ce75824 /server | |
parent | 77d6ab9f4a76a80523e54121972f9c5041a0e0e9 (diff) | |
download | sonarqube-f97ab42e67c2597f9fd0f065a0b63d8e530a3a38.tar.gz sonarqube-f97ab42e67c2597f9fd0f065a0b63d8e530a3a38.zip |
fix ws api page
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/app/views/api_documentation/index.html.erb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/views/api_documentation/index.html.erb b/server/sonar-web/src/main/webapp/WEB-INF/app/views/api_documentation/index.html.erb index 2424c7032bc..9779e93a1c0 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/views/api_documentation/index.html.erb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/views/api_documentation/index.html.erb @@ -1,7 +1,9 @@ +<div id="api-documentation" class="search-navigator sticky"></div> + <% content_for :extra_script do %> <script> require(['apps/api-documentation/app'], function (App) { - App.start({ el: '#content' }); + App.start({ el: '#api-documentation' }); }); </script> <% end %> |