summaryrefslogtreecommitdiffstats
path: root/extensions/ProductDashboard/web/js/roadmap.js
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/ProductDashboard/web/js/roadmap.js')
-rw-r--r--extensions/ProductDashboard/web/js/roadmap.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/extensions/ProductDashboard/web/js/roadmap.js b/extensions/ProductDashboard/web/js/roadmap.js
deleted file mode 100644
index 466446c13..000000000
--- a/extensions/ProductDashboard/web/js/roadmap.js
+++ /dev/null
@@ -1,26 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this file,
- * You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This Source Code Form is "Incompatible With Secondary Licenses", as
- * defined by the Mozilla Public License, v. 2.0.
- */
-
-$(function() {
- YUI({
- base: 'js/yui3/',
- combine: false
- }).use("datatable", "datatable-sort", function (Y) {
- var column_defs = [
- { key: 'name', label: 'Name', sortable: true },
- { key: 'percentage', label: 'Percentage', sortable: false, allowHTML: true,
- formatter: '<div class="percentage"><div class="bar" style="width:{value}%"></div><div class="percent">{value}%</div></div>' },
- { key: 'link', label: 'Links', allowHTML: true, sortable: false }
- ];
-
- var roadmapDataTable = new Y.DataTable({
- columns: column_defs,
- data: PD.roadmap,
- }).render('#bug_milestones');
- });
-});