shoelace/docs/assets/plugins/sidebar/sidebar.js

15 wiersze
446 B
JavaScript
Czysty Zwykły widok Historia

2020-07-15 21:30:37 +00:00
(() => {
if (!window.$docsify) {
throw new Error('Docsify must be loaded before installing this plugin.');
}
window.$docsify.plugins.push((hook, vm) => {
hook.mounted(function () {
// Move search below the app name
const appName = document.querySelector('.sidebar .app-name');
const search = document.querySelector('.sidebar .search');
2021-02-26 14:09:13 +00:00
appName.insertAdjacentElement('afterend', search);
});
2020-07-15 21:30:37 +00:00
});
})();