mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-24 15:53:46 +00:00
df2895f610
We have conventions about template variable naming. * Drop camel case * Prefix message keys with `msg-` followed by message key name * Prefix HTML with `html-` Change-Id: I34f04f3d217dc8caa4dcc29e60058951a6555b1e
19 lines
923 B
JavaScript
19 lines
923 B
JavaScript
import searchBoxTemplate from '!!raw-loader!../includes/templates/SearchBox.mustache';
|
|
import { htmluserlangattributes } from './utils';
|
|
|
|
export { searchBoxTemplate };
|
|
|
|
/**
|
|
* @type SearchData
|
|
*/
|
|
export const searchBoxData = {
|
|
'form-action': '/w/index.php',
|
|
'html-userlangattributes': htmluserlangattributes,
|
|
'msg-search': 'Search',
|
|
'form-id': 'simpleSearch',
|
|
'html-input': '<input type="search" name="search" placeholder="Search Wikipedia" title="Search Wikipedia [⌃⌥f]" accesskey="f" id="searchInput" autocomplete="off">',
|
|
'page-title': 'Special:Search',
|
|
'html-button-search-fallback': '<input type="submit" name="fulltext" value="Search" title="Search pages for this text" id="mw-searchButton" class="searchButton mw-fallbackSearchButton"/>',
|
|
'html-button-search': '<input type="submit" name="go" value="Go" title="Go to a page with this exact name if it exists" id="searchButton" class="searchButton">'
|
|
};
|