summaryrefslogtreecommitdiff
path: root/src/fauxton/app/addons/activetasks/templates/tabs.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/fauxton/app/addons/activetasks/templates/tabs.html')
-rw-r--r--src/fauxton/app/addons/activetasks/templates/tabs.html46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/fauxton/app/addons/activetasks/templates/tabs.html b/src/fauxton/app/addons/activetasks/templates/tabs.html
deleted file mode 100644
index 58697480d..000000000
--- a/src/fauxton/app/addons/activetasks/templates/tabs.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!--
-Licensed under the Apache License, Version 2.0 (the "License"); you may not
-use this file except in compliance with the License. You may obtain a copy of
-the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-License for the specific language governing permissions and limitations under
-the License.
--->
-
-
-
-
-
-<div id="sidenav">
- <header class="row-fluid">
- <h3>Filter by: </h3>
- </header>
-
- <nav>
- <ul class="task-tabs nav nav-list">
- <% for (var filter in filters) { %>
- <li data-type="<%=filter%>">
- <a>
- <%=filters[filter]%>
- </a>
- </li>
- <% } %>
- </ul>
- <ul class="nav nav-list views">
- <li class="nav-header">Polling interval</li>
- <li>
- <input id="pollingRange" type="range"
- min="1"
- max="30"
- step="1"
- value="5"/>
- <label for="pollingRange"><span>5</span> second(s)</label>
- </li>
- </ul>
- </nav>
-</div>