diff options
| author | Noopur Gupta | 2019-09-30 08:27:09 +0000 |
|---|---|---|
| committer | Noopur Gupta | 2019-09-30 08:27:09 +0000 |
| commit | eb904daf64b313a2b4b2b0a665fa594dc2bdf73c (patch) | |
| tree | c5758646ab4186820d6a2f41b155ebec4c64cc71 | |
| parent | 1e386dca79a6e488e42126f216de7e85af250480 (diff) | |
| download | jdt-eb904daf64b313a2b4b2b0a665fa594dc2bdf73c.tar.gz jdt-eb904daf64b313a2b4b2b0a665fa594dc2bdf73c.tar.xz jdt-eb904daf64b313a2b4b2b0a665fa594dc2bdf73c.zip | |
Script
Change-Id: I4256698e796bc22e7a40f2e75ddb242b66134f82
| -rw-r--r-- | ui/scripts/jdtbugzilla.user.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ui/scripts/jdtbugzilla.user.js b/ui/scripts/jdtbugzilla.user.js index 1e04376..19420f2 100644 --- a/ui/scripts/jdtbugzilla.user.js +++ b/ui/scripts/jdtbugzilla.user.js @@ -34,7 +34,7 @@ // @resource config https://www.eclipse.org/jdt/ui/scripts/jdtbugzilla.config.js // @downloadURL https://www.eclipse.org/jdt/ui/scripts/jdtbugzilla.user.js // @updateURL https://www.eclipse.org/jdt/ui/scripts/jdtbugzilla.user.js -// @version 1.20190903T1046 +// @version 1.20190930T0826 // @include https://bugs.eclipse.org/bugs/show_bug.cgi* // @include https://bugs.eclipse.org/bugs/process_bug.cgi @@ -2434,18 +2434,18 @@ function process_result_pages() { } } - // Add JDT UI Java 13 root bug to 'Blocks' + // Add JDT UI Java 14 root bug to 'Blocks' var blocksLabel= document.getElementById("field_label_blocked"); if (blocksLabel) { var rootBugButton= document.createElement("button"); - var rootTextElem = document.createTextNode("UI13"); + var rootTextElem = document.createTextNode("UI14"); rootBugButton.appendChild(rootTextElem); rootBugButton.style.marginLeft= "1em"; rootBugButton.addEventListener('click', function() { var blockedElem= document.getElementById("blocked"); if (blockedElem) { - blockedElem.value += 548096; + blockedElem.value += 551616; } }); @@ -2455,18 +2455,18 @@ function process_result_pages() { trElem.appendChild(tdElem); } - // Add JDT Core Java 13 root bug to 'Blocks' + // Add JDT Core Java 14 root bug to 'Blocks' var blocksLabel= document.getElementById("field_label_blocked"); if (blocksLabel) { var rootBugButton= document.createElement("button"); - var rootTextElem = document.createTextNode("CORE13"); + var rootTextElem = document.createTextNode("CORE14"); rootBugButton.appendChild(rootTextElem); //rootBugButton.style.marginLeft= "1em"; rootBugButton.addEventListener('click', function() { var blockedElem= document.getElementById("blocked"); if (blockedElem) { - blockedElem.value += 539066; + blockedElem.value += 549808; } }); |
