Files
webawesome/docs/assets/plugins/sidebar/sidebar.js
Cory LaViska 0b86753038 2.0 cleanup
2020-07-15 17:30:37 -04:00

15 lines
447 B
JavaScript

(() => {
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');
appName.insertAdjacentElement("afterend", search);
});
});
})();