Last active
April 14, 2020 04:59
-
-
Save westonruter/f611e17a8b6848b8abf08ca43c2d6fe8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#3284 [IS] Reduce scenarios where DB writes are performed during frontend requests | |
#4563 [IS] Unit tests are broken on WordPress trunk due to loading=lazy | |
#4553 [PR] Prevent styles from being removed when in Customizer preview with Standard mode | |
#4551 [IS] Standard Mode Messes Up Customizer Preview | |
#4547 [PR] Restore unification of multi-page post content in Reader mode | |
#4544 [PR] Ensure that validation query vars persist through redirects | |
#4543 [PR] Add requirements to plugin file header | |
#4540 [PR] Use title case for Paired Browsing link in edit post screen | |
#4538 [PR] Restrict doing plugin upgrade routine when not in admin | |
#4535 [PR] Add new accessibility sanitizer | |
#4533 [PR] Force status code of validation responses to be 200 | |
#4532 [IS] Unable to access validation results for non-OK responses | |
#4528 [IS] Add sanitizer to ensure 'role' and 'tabindex' attributes are present for elements with 'on' attribute | |
#4527 [PR] Update Optimizer test specs | |
#4523 [IS] Add button to reenable CSS transient cache | |
#4522 [PR] Add button into Site Health to reenable CSS transient caching | |
#4520 [IS] Add Requires plugin header information | |
#4474 [PR] Mock all embed tests and rename embed class files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(( items ) => { | |
const lines = []; | |
for ( const item of items ) { | |
const title = item.querySelector('.zhc-issues-list-item__title > a').textContent; | |
const number = item.querySelector('.zhc-issues-list-item__issue_number').textContent; | |
const isPullRequest = Boolean( item.querySelector( '.zhc-icon--pull-request-closed' ) || item.querySelector( '.zhc-icon--pull-request-open' ) ); | |
lines.push( `${number} [${isPullRequest ? 'PR' : 'IS'}] ${title}` ); | |
} | |
return lines.join( "\n" ); | |
})( document.querySelectorAll('.zhc-release-issues .zhc-issues-list:not(.zhc-issues-list--removed-issues) .zhc-issues-list-item') ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment