aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/api-documentation/header-view.js
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2016-02-25 19:08:22 +0100
committerStas Vilchik <vilchiks@gmail.com>2016-02-29 14:13:36 +0100
commit7e1bd1a88c7b36d2dd7a678423705d2efddb5d83 (patch)
tree46c67aee74a39a735faeb7324dbf811bbc749db7 /server/sonar-web/src/main/js/apps/api-documentation/header-view.js
parent9c4e7a049ce145694c76307dcb6868be4fd9e8d2 (diff)
downloadsonarqube-7e1bd1a88c7b36d2dd7a678423705d2efddb5d83.tar.gz
sonarqube-7e1bd1a88c7b36d2dd7a678423705d2efddb5d83.zip
SONAR-7074 SONAR-7310 SONAR-7357 SONAR-7395 refactor web api page
Diffstat (limited to 'server/sonar-web/src/main/js/apps/api-documentation/header-view.js')
-rw-r--r--server/sonar-web/src/main/js/apps/api-documentation/header-view.js29
1 files changed, 0 insertions, 29 deletions
diff --git a/server/sonar-web/src/main/js/apps/api-documentation/header-view.js b/server/sonar-web/src/main/js/apps/api-documentation/header-view.js
deleted file mode 100644
index c90eb05db73..00000000000
--- a/server/sonar-web/src/main/js/apps/api-documentation/header-view.js
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2016 SonarSource SA
- * mailto:contact 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.
- */
-import Marionette from 'backbone.marionette';
-import Template from './templates/api-documentation-header.hbs';
-
-export default Marionette.ItemView.extend({
- template: Template,
-
- modelEvents: {
- 'change': 'render'
- }
-});