Browse Source

Revert "SONARCLOUD-615 Add google tag manager scripts" (#1583)

This reverts commit 74356a544b.
tags/7.8
Siegfried Ehret 5 years ago
parent
commit
0163587d48

+ 0
- 1
server/sonar-web/config/webpack.config.js View File

@@ -193,7 +193,6 @@ module.exports = ({ production = true, release = false }) => {

!production && new webpack.HotModuleReplacementPlugin()
].filter(Boolean),

performance:
production && release
? {

+ 0
- 19
server/sonar-web/public/analytics.js View File

@@ -1,19 +0,0 @@
/*
* SonarQube
* Copyright (C) 2009-2019 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/

+ 6
- 8
server/sonar-web/public/index.html View File

@@ -31,20 +31,18 @@
</head>

<body>
<script>
window.baseUrl = '%WEB_CONTEXT%';
window.serverStatus = '%SERVER_STATUS%';
window.instance = '%INSTANCE%';
window.official = %OFFICIAL%;
</script>
<script src="./analytics.js"></script>

<div id="content">
<div class="global-loading">
<i class="spinner global-loading-spinner"></i>
<span class="global-loading-text">Loading...</span>
</div>
</div>
<script>
window.baseUrl = '%WEB_CONTEXT%';
window.serverStatus = '%SERVER_STATUS%';
window.instance = '%INSTANCE%';
window.official = %OFFICIAL%;
</script>
<% for (let chunk in htmlWebpackPlugin.files.chunks) { %>
<script type="module" src="%WEB_CONTEXT%/<%= htmlWebpackPlugin.files.chunks[chunk].entry %>"></script>
<script nomodule src="%WEB_CONTEXT%/<%= htmlWebpackPlugin.files.chunks[chunk].entry.replace(/m\.[\w\d]+/, htmlWebpackPlugin.options.timestamp) %>"></script>

Loading…
Cancel
Save