mirror of
				https://github.com/zulip/zulip-desktop.git
				synced 2025-11-03 21:43:18 +00:00 
			
		
		
		
	* Using electron built-in spellchecker * Added the custom context menu Co-authored-by: Anders Kaseorg <anders@zulipchat.com> Fixes: #504
		
			
				
	
	
		
			22 lines
		
	
	
		
			809 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			809 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en" class="responsive desktop">
 | 
						|
    <head>
 | 
						|
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 | 
						|
        <meta name="viewport" content="width=device-width">
 | 
						|
        <title>Zulip - Settings</title>
 | 
						|
        <link rel="stylesheet" href="css/preference.css" type="text/css" media="screen">
 | 
						|
        <link id="tagify-css" rel="stylesheet" href="data:text/css,">
 | 
						|
    </head>
 | 
						|
    <body>
 | 
						|
        <div id="content">
 | 
						|
            <div id="sidebar"></div>
 | 
						|
            <div id="settings-container"></div>
 | 
						|
        </div>
 | 
						|
    </body>
 | 
						|
    <script>
 | 
						|
        document.querySelector('#tagify-css').href = require.resolve('@yaireo/tagify/dist/tagify.css');
 | 
						|
        require('./js/pages/preference/preference.js');
 | 
						|
        require('./js/shared/preventdrag.js')
 | 
						|
    </script>
 | 
						|
</html>
 |