Your IP : 3.22.42.25


Current Path : /var/www/www-root/data/www/www.monolith-realty.ru/bitrix/js/location/mobile/src/mixins/
Upload File :
Current File : /var/www/www-root/data/www/www.monolith-realty.ru/bitrix/js/location/mobile/src/mixins/keyboard.js

export default {
	data: () => {
		return {
			isKeyboardShown: false,
		};
	},
	methods: {
		subscribeToKeyboardEvents(): void
		{
			window.app.exec('enableCaptureKeyboard', true);
			BXMobileApp.addCustomEvent('onKeyboardWillShow', () => {
				this.isKeyboardShown = true;
			});
			BXMobileApp.addCustomEvent('onKeyboardWillHide', () => {
				this.isKeyboardShown = false;
			});
		},
		adjustWindowHeight(): void
		{
			const currentHeight = window.innerHeight;
			document.body.style.height = `${currentHeight}px`;
		},
	},
}