[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 /** 2 * @param {!Tag} tag 3 * @param {string} innerText 4 */ 5 function filterTag(tag, innerText) 6 { 7 var slug = innerText.toLowerCase(); 8 slug = slug.replace(/[^a-z0-9]+/g, '-'); 9 slug = slug.replace(/^-/, '').replace(/-$/, ''); 10 if (slug !== '') 11 { 12 tag.setAttribute('slug', slug); 13 } 14 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |