Spaces:
				
			
			
	
			
			
		Sleeping
		
	
	
	
			
			
	
	
	
	
		
		
		Sleeping
		
	Update app.py
Browse files
    	
        app.py
    CHANGED
    
    | @@ -175,19 +175,19 @@ def main(): | |
| 175 | 
             
                st.markdown("""
         | 
| 176 | 
             
                    <script>
         | 
| 177 | 
             
                        document.getElementById('question1').onclick = function() {
         | 
| 178 | 
            -
                            document. | 
| 179 | 
            -
                            document. | 
| 180 | 
             
                        };
         | 
| 181 | 
             
                        document.getElementById('question2').onclick = function() {
         | 
| 182 | 
            -
                            document. | 
| 183 | 
            -
                            document. | 
| 184 | 
             
                        };
         | 
| 185 | 
             
                        document.getElementById('question3').onclick = function() {
         | 
| 186 | 
            -
                            document. | 
| 187 | 
            -
                            document. | 
| 188 | 
             
                        };
         | 
| 189 | 
             
                    </script>
         | 
| 190 | 
             
                """, unsafe_allow_html=True)
         | 
| 191 |  | 
| 192 | 
             
            if __name__ == "__main__":
         | 
| 193 | 
            -
                main()
         | 
|  | |
| 175 | 
             
                st.markdown("""
         | 
| 176 | 
             
                    <script>
         | 
| 177 | 
             
                        document.getElementById('question1').onclick = function() {
         | 
| 178 | 
            +
                            document.querySelectorAll('div.stTextInput input')[0].value = 'Was genau ist ein Belegarzt?';
         | 
| 179 | 
            +
                            document.querySelectorAll('div.stTextInput input')[0].dispatchEvent(new Event('change'));
         | 
| 180 | 
             
                        };
         | 
| 181 | 
             
                        document.getElementById('question2').onclick = function() {
         | 
| 182 | 
            +
                            document.querySelectorAll('div.stTextInput input')[0].value = 'Wofür wird die Alpha-ID verwendet?';
         | 
| 183 | 
            +
                            document.querySelectorAll('div.stTextInput input')[0].dispatchEvent(new Event('change'));
         | 
| 184 | 
             
                        };
         | 
| 185 | 
             
                        document.getElementById('question3').onclick = function() {
         | 
| 186 | 
            +
                            document.querySelectorAll('div.stTextInput input')[0].value = 'Was sind die Vorteile des ambulanten operierens?';
         | 
| 187 | 
            +
                            document.querySelectorAll('div.stTextInput input')[0].dispatchEvent(new Event('change'));
         | 
| 188 | 
             
                        };
         | 
| 189 | 
             
                    </script>
         | 
| 190 | 
             
                """, unsafe_allow_html=True)
         | 
| 191 |  | 
| 192 | 
             
            if __name__ == "__main__":
         | 
| 193 | 
            +
                main()
         |