mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-04 13:31:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			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');
 | 
						|
    }
 | 
						|
 | 
						|
}
 |