mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 02:24:04 +00:00
Limit pagedescription text to 60 characters (#122)
* Trim extra description off for pagedescription * Github CI lint - phpcbf Co-authored-by: github-actions <github-actions@users.noreply.github.com>
This commit is contained in:
parent
9d6f97cae6
commit
c14bb9135e
|
@ -373,7 +373,7 @@ window.WMTypeAhead = function ( appendTo, searchInput ) {
|
|||
pageDescription = page.extract || '';
|
||||
break;
|
||||
case 'pagedescription':
|
||||
pageDescription = page.pageprops.description || '';
|
||||
pageDescription = page.pageprops.description.substring(0, 60) + '...' || '';
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue