MediaWiki:Common.js: Porovnání verzí
Z The Last Kingdom UO Wiki
Bez shrnutí editace |
Bez shrnutí editace |
||
| Řádek 1: | Řádek 1: | ||
mw.loader.using(['mediawiki.util'], function () { | |||
(function () { | $(function () { | ||
function | |||
if ($('#google_translate_element').length) return; | |||
$('body').append( | |||
'<div id="google_translate_element" ' + | |||
'style="position:fixed;top:10px;right:10px;z-index:9999;"></div>' | |||
); | |||
window.googleTranslateElementInit = function () { | |||
new google.translate.TranslateElement({ | |||
pageLanguage: 'cs', | |||
includedLanguages: 'cs,en', | |||
autoDisplay: false | |||
}, 'google_translate_element'); | |||
}; | |||
$.getScript('https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit'); | |||
}) | }); | ||
}); | |||