mirror of
https://github.com/tenrok/maska.git
synced 2026-05-15 11:59:38 +03:00
15 lines
372 B
JavaScript
15 lines
372 B
JavaScript
;(function () {
|
|
function versionPlugin(hook) {
|
|
hook.mounted(function () {
|
|
document
|
|
.getElementById('version-selector')
|
|
.addEventListener('change', (e) => {
|
|
window.location.href = '../' + e.target.value + '/'
|
|
})
|
|
})
|
|
}
|
|
|
|
$docsify = $docsify || {}
|
|
$docsify.plugins = [].concat($docsify.plugins || [], versionPlugin)
|
|
})()
|