diff --git wordpress.org/public_html/style/trac/wp-trac.js wordpress.org/public_html/style/trac/wp-trac.js
index 739b2fa18..20a420932 100644
|
|
|
var wpTrac, coreKeywordList, gardenerKeywordList, reservedTerms, coreFocusesList |
| 18 | 18 | 'has-unit-tests' : 'Proposed solution has unit test coverage.', |
| 19 | 19 | 'needs-unit-tests' : 'Ticket has a particular need for unit tests.', |
| 20 | 20 | 'needs-dev-note' : 'Ticket needs a post on the development blog.', |
| | 21 | 'has-dev-note' : 'Ticket with a published post on the development blog.', |
| 21 | 22 | 'needs-docs' : 'Inline documentation is needed.', |
| 22 | 23 | 'needs-codex' : 'The Codex needs to be updated or expanded.', |
| 23 | 24 | 'has-screenshots' : 'Visual changes are documented with screenshots.', |
| … |
… |
var wpTrac, coreKeywordList, gardenerKeywordList, reservedTerms, coreFocusesList |
| 1071 | 1072 | wpTrac.workflow.removeKeyword( 'has-screenshots' ); |
| 1072 | 1073 | } |
| 1073 | 1074 | |
| | 1075 | if ( 'has-dev-note' === keyword ) { |
| | 1076 | wpTrac.workflow.removeKeyword( 'needs-dev-note' ); |
| | 1077 | } else if ( 'needs-dev-note' === keyword ) { |
| | 1078 | wpTrac.workflow.removeKeyword( 'has-dev-note' ); |
| | 1079 | } |
| | 1080 | |
| 1074 | 1081 | // Add it to the bin, and refresh the hidden input. |
| 1075 | 1082 | html = $('<span />').text(keyword).attr('data-keyword', keyword).prepend('<a class="dashicons dashicons-dismiss" href="#" />'); |
| 1076 | 1083 | if ( title ) { |