Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions wordpress.org/public_html/style/trac/wp-trac.js
Original file line number Diff line number Diff line change
Expand Up @@ -1180,9 +1180,12 @@ var wpTrac, coreKeywordList, gardenerKeywordList, reservedTerms, coreFocusesList
// If the owner field exists, then we're on /newticket. Remove it.
$('#field-owner').parents('tr').hide();

html = '<div><label id="keyword-label" for="keyword-add" style="width:' + labelWidth + 'px">Workflow Keywords:</label>';
html += '<select id="keyword-add"><option value=""> - Add - </option></select>';
html += '<button type="button" id="edit-keywords" aria-label="Manual keyword" aria-expanded="false">Manual</button></div>';
html = '<div>'
html += '<label id="keyword-label" for="keyword-add" style="width:' + labelWidth + 'px">Workflow Keywords:</label>';
html += '<select id="keyword-add"><option value=""> - Add - </option></select>';
html += '<button type="button" id="edit-keywords" aria-label="Manual keyword" aria-expanded="false">Manual</button>';
html += ' <a href="https://make.wordpress.org/core/handbook/contribute/trac/keywords/" title="Keywords documentation">ℹ</a>';
html += '</div>';
html += '<div id="keyword-bin"></div>';
container.prepend( html );
elements.bin = $('#keyword-bin');
Expand Down