diff --git a/new-pipeline/dist.html b/new-pipeline/dist.html index 5dab853..b1d4748 100644 --- a/new-pipeline/dist.html +++ b/new-pipeline/dist.html @@ -43,8 +43,6 @@ with - - as and compare by diff --git a/new-pipeline/evo.html b/new-pipeline/evo.html index fa15828..a3a8cae 100644 --- a/new-pipeline/evo.html +++ b/new-pipeline/evo.html @@ -51,8 +51,6 @@ on - with - as diff --git a/new-pipeline/src/dashboards.js b/new-pipeline/src/dashboards.js index 85cae4d..dec8e7d 100644 --- a/new-pipeline/src/dashboards.js +++ b/new-pipeline/src/dashboards.js @@ -202,7 +202,7 @@ function loadStateFromUrlAndCookie() { pageState.min_channel_version = null; pageState.max_channel_version = null; pageState.product = ["Firefox"]; - pageState.os = pageState.arch = pageState.e10s = pageState.processType = + pageState.os = pageState.arch = pageState.processType = null; pageState.compare = ""; pageState.keys = []; @@ -266,12 +266,6 @@ function loadStateFromUrlAndCookie() { .filter(function (v) { return v !== ""; }) : null; - pageState.e10s = typeof pageState.e10s === "string" && pageState.e10s !== "" && - pageState.e10s !== "null" ? - pageState.e10s.split("!") - .filter(function (v) { - return v !== ""; - }) : null; pageState.processType = typeof pageState.processType === "string" && pageState.processType !== "" && pageState.processType !== "null" ? pageState.processType.split("!") @@ -279,7 +273,7 @@ function loadStateFromUrlAndCookie() { return v !== ""; }) : null; pageState.compare = typeof pageState.compare === "string" && ["", "os", - "osVersion", "architecture", "e10sEnabled", "child"].indexOf(pageState.compare) >= + "osVersion", "architecture", "child"].indexOf(pageState.compare) >= 0 ? pageState.compare : ""; @@ -494,10 +488,6 @@ function getHumanReadableOptions(filterName, options) { "x86": "32-bit", "x86-64": "64-bit" }; - var e10sNames = { - "false": "no e10s", - "true": "e10s" - }; var processTypeNames = { "false": "main process", "true": "child process" @@ -604,11 +594,6 @@ function getHumanReadableOptions(filterName, options) { return [option, archNames.hasOwnProperty(option) ? archNames[option] : option]; }); - } else if (filterName === "e10sEnabled") { - return options.map(function (option) { - return [option, e10sNames.hasOwnProperty(option) ? e10sNames[option] : - option]; - }); } else if (filterName === "child") { return options.map(function (option) { return [option, processTypeNames.hasOwnProperty(option) ? diff --git a/new-pipeline/src/dist.js b/new-pipeline/src/dist.js index 0536412..84e1cae 100644 --- a/new-pipeline/src/dist.js +++ b/new-pipeline/src/dist.js @@ -18,7 +18,6 @@ $(function () { "application": $("#filter-product"), "os": $("#filter-os"), "architecture": $("#filter-arch"), - "e10sEnabled": $("#filter-e10s"), "child": $("#filter-process-type"), }; gAxesList = [ @@ -104,14 +103,6 @@ $(function () { .multiselect("selectAll", false) .multiselect("updateButtonText"); } - if (gInitialPageState.e10s !== null) { - $("#filter-e10s") - .multiselect("select", gInitialPageState.e10s); - } else { - $("#filter-e10s") - .multiselect("selectAll", false) - .multiselect("updateButtonText"); - } if (gInitialPageState.processType !== null) { $("#filter-process-type") .multiselect("select", gInitialPageState.processType); @@ -156,7 +147,6 @@ $(function () { "#filter-product", "#filter-os", "#filter-arch", - "#filter-e10s", "#filter-process-type", "#compare", ].join(",")).change(function (e) { @@ -444,8 +434,6 @@ function updateOptions(callback) { "application", deduplicate(optionsMap.application || []))); multiselectSetOptions($("#filter-arch"), getHumanReadableOptions( "architecture", deduplicate(optionsMap.architecture || []))); - multiselectSetOptions($("#filter-e10s"), getHumanReadableOptions( - "e10sEnabled", deduplicate(optionsMap.e10sEnabled || []))); multiselectSetOptions($("#filter-process-type"), getHumanReadableOptions("child", deduplicate(optionsMap.child || [])) ); @@ -1690,12 +1678,6 @@ function saveStateToUrlAndCookie() { .size()) { gInitialPageState.arch = selected; } - var selected = $("#filter-e10s") - .val() || []; - if (selected.length !== $("#filter-e10s option") - .size()) { - gInitialPageState.e10s = selected; - } var selected = $("#filter-process-type") .val() || []; if (selected.length !== $("#filter-process-type option") diff --git a/new-pipeline/src/evo.js b/new-pipeline/src/evo.js index 07ac365..9c2c9bc 100644 --- a/new-pipeline/src/evo.js +++ b/new-pipeline/src/evo.js @@ -53,7 +53,6 @@ $(function () { "application": $("#filter-product"), "os": $("#filter-os"), "architecture": $("#filter-arch"), - "e10sEnabled": $("#filter-e10s"), "child": $("#filter-process-type"), }; gInitialPageState = loadStateFromUrlAndCookie(); @@ -138,14 +137,6 @@ $(function () { .multiselect("selectAll", false) .multiselect("updateButtonText"); } - if (gInitialPageState.e10s !== null) { - $("#filter-e10s") - .multiselect("select", gInitialPageState.e10s); - } else { - $("#filter-e10s") - .multiselect("selectAll", false) - .multiselect("updateButtonText"); - } if (gInitialPageState.processType !== null) { $("#filter-process-type") .multiselect("select", gInitialPageState.processType); @@ -256,7 +247,7 @@ $(function () { }); }); $( - "#measure, input[name=build-time-toggle], input[name=sanitize-toggle], #aggregates, #filter-product, #filter-os, #filter-arch, #filter-e10s, #filter-process-type" + "#measure, input[name=build-time-toggle], input[name=sanitize-toggle], #aggregates, #filter-product, #filter-os, #filter-arch, #filter-process-type" ) .change(function (e) { var $this = $(this); @@ -463,9 +454,6 @@ function updateOptions(callback) { multiselectSetOptions($("#filter-arch"), getHumanReadableOptions("architecture", deduplicate( optionsMap.architecture))); - multiselectSetOptions($("#filter-e10s"), - getHumanReadableOptions("e10sEnabled", deduplicate( - optionsMap.e10sEnabled))); multiselectSetOptions($("#filter-process-type"), getHumanReadableOptions("child", deduplicate(optionsMap.child)) ); @@ -986,12 +974,6 @@ function saveStateToUrlAndCookie() { .size()) { gInitialPageState.arch = selected; } - var selected = $("#filter-e10s") - .val() || []; - if (selected.length !== $("#filter-e10s option") - .size()) { - gInitialPageState.e10s = selected; - } var selected = $("#filter-process-type") .val() || []; if (selected.length !== $("#filter-process-type option")