aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/webapp/WEB-INF/app/views/component/index.html.erb
blob: aa8f970e11cd23742407d3deac661db05343ffeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<% content_for :extra_script do %>
  <% if @resource %>
  <script type="text/javascript">
    (function () {
      window.sonarqube.el = '#body';
      window.sonarqube.file = {
        uuid: '<%= @resource.uuid -%>',
        key: '<%= @resource.key -%>'
        <% if @line %>, line: <%= @line -%><% end %>
      };
    })();
  </script>
  <% end %>
  <script src="<%= ApplicationController.root_context -%>/js/bundles/source-viewer.js?v=<%= sonar_version -%>"></script>
<% end %>