Changeset 10266
- Timestamp:
- 09/16/2020 06:02:02 AM (5 years ago)
- Location:
- sites/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/trac.wordpress.org/templates/site.html
r10265 r10266 5 5 6 6 <?python 7 scripts_version = '14 6'7 scripts_version = '147' 8 8 project_slug = req.environ['HTTP_HOST'].split(':')[0].split('.')[0] 9 9 wporg_endpoint = 'https://make.wordpress.org/' + project_slug + '/' -
sites/trunk/wordpress.org/public_html/style/trac/wp-trac.js
r10156 r10266 355 355 } 356 356 }); 357 358 // Move all of the ticket actions text into the label. 359 // Trac markup is like this: `<label>close</label> as fixed` 360 jQuery('#action div label' ).each( function() { 361 if ( this.nextSibling && Node.TEXT_NODE === this.nextSibling.nodeType ) { 362 this.textContent += this.nextSibling.nodeValue; 363 this.nextSibling.nodeValue = ''; 364 } 365 } ); 357 366 358 367 // Point users to open new tickets when they comment on old tickets.
Note: See TracChangeset
for help on using the changeset viewer.