mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-24 15:53:46 +00:00
87f08dcf5b
In preparation for using the SkinMustache class and core buildSearchProps method [1], and to reduce the risk of that change, move the ID from the template data to the template itself: [1] https://github.com/wikimedia/mediawiki/blob/master/includes/skins/SkinMustache.php#L93 Change-Id: I8d62ea6b1adf6ef0cbfa20e1876806eba70b169f
18 lines
895 B
JavaScript
18 lines
895 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',
|
|
'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">'
|
|
};
|