mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
e711290d8b
Had to do some manual fixing of the app.js file due to misplaced comments
19 lines
576 B
JavaScript
19 lines
576 B
JavaScript
import {Component} from './component';
|
|
|
|
export class SettingHomepageControl extends Component {
|
|
|
|
setup() {
|
|
this.typeControl = this.$refs.typeControl;
|
|
this.pagePickerContainer = this.$refs.pagePickerContainer;
|
|
|
|
this.typeControl.addEventListener('change', this.controlPagePickerVisibility.bind(this));
|
|
this.controlPagePickerVisibility();
|
|
}
|
|
|
|
controlPagePickerVisibility() {
|
|
const showPagePicker = this.typeControl.value === 'page';
|
|
this.pagePickerContainer.style.display = (showPagePicker ? 'block' : 'none');
|
|
}
|
|
|
|
}
|