|  | @@ -5,7 +5,8 @@ import {
 | 
	
		
			
				|  |  |    reactive,
 | 
	
		
			
				|  |  |    ref,
 | 
	
		
			
				|  |  |    watch,
 | 
	
		
			
				|  |  | -  nextTick
 | 
	
		
			
				|  |  | +  nextTick,
 | 
	
		
			
				|  |  | +  onBeforeMount
 | 
	
		
			
				|  |  |  } from 'vue';
 | 
	
		
			
				|  |  |  // import WaveSurfer from 'wavesurfer.js';
 | 
	
		
			
				|  |  |  // import Regions from 'wavesurfer.js/dist/plugins/regions.js';
 | 
	
	
		
			
				|  | @@ -538,8 +539,18 @@ export default defineComponent({
 | 
	
		
			
				|  |  |      function setFullHeight(){
 | 
	
		
			
				|  |  |        creationHeight.value = window.innerHeight
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  | +    onBeforeMount(() => {
 | 
	
		
			
				|  |  | +      if(isApp) {
 | 
	
		
			
				|  |  | +        postMessage({
 | 
	
		
			
				|  |  | +          api: "setRequestedOrientation",
 | 
	
		
			
				|  |  | +          content: {
 | 
	
		
			
				|  |  | +            orientation: 1,
 | 
	
		
			
				|  |  | +          },
 | 
	
		
			
				|  |  | +        });
 | 
	
		
			
				|  |  | +        setStatusBarTextColor(true)
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    })
 | 
	
		
			
				|  |  |      onMounted(async () => {
 | 
	
		
			
				|  |  | -      if(isApp) { setStatusBarTextColor(true) }
 | 
	
		
			
				|  |  |        __init();
 | 
	
		
			
				|  |  |        setFullHeight()
 | 
	
		
			
				|  |  |        window.addEventListener('resize', setFullHeight)
 |