diff options
-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 %> |