mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 05:28:59 +01:00 
			
		
		
		
	fix(mobile): include note & add link dialogs (closes #1677)
This commit is contained in:
		
							parent
							
								
									3c88e3c12c
								
							
						
					
					
						commit
						abc9f49ae6
					
				@ -6,6 +6,7 @@
 | 
				
			|||||||
## 🐞 Bugfixes
 | 
					## 🐞 Bugfixes
 | 
				
			||||||
 | 
					
 | 
				
			||||||
*   Calendar does not hide when clicking on a note by @JYC333
 | 
					*   Calendar does not hide when clicking on a note by @JYC333
 | 
				
			||||||
 | 
					*   [Unable to add internal link on mobile version](https://github.com/TriliumNext/Notes/issues/1677)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## ✨ Improvements
 | 
					## ✨ Improvements
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -32,6 +32,8 @@ import RecentChangesDialog from "../widgets/dialogs/recent_changes.js";
 | 
				
			|||||||
import PromptDialog from "../widgets/dialogs/prompt.js";
 | 
					import PromptDialog from "../widgets/dialogs/prompt.js";
 | 
				
			||||||
import RefreshButton from "../widgets/floating_buttons/refresh_button.js";
 | 
					import RefreshButton from "../widgets/floating_buttons/refresh_button.js";
 | 
				
			||||||
import MobileEditorToolbar from "../widgets/ribbon_widgets/mobile_editor_toolbar.js";
 | 
					import MobileEditorToolbar from "../widgets/ribbon_widgets/mobile_editor_toolbar.js";
 | 
				
			||||||
 | 
					import AddLinkDialog from "../widgets/dialogs/add_link.js";
 | 
				
			||||||
 | 
					import IncludeNoteDialog from "../widgets/dialogs/include_note.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const MOBILE_CSS = `
 | 
					const MOBILE_CSS = `
 | 
				
			||||||
<style>
 | 
					<style>
 | 
				
			||||||
@ -186,6 +188,8 @@ export default class MobileLayout {
 | 
				
			|||||||
            .child(new HelpDialog())
 | 
					            .child(new HelpDialog())
 | 
				
			||||||
            .child(new RecentChangesDialog())
 | 
					            .child(new RecentChangesDialog())
 | 
				
			||||||
            .child(new JumpToNoteDialog())
 | 
					            .child(new JumpToNoteDialog())
 | 
				
			||||||
            .child(new PromptDialog());
 | 
					            .child(new PromptDialog())
 | 
				
			||||||
 | 
					            .child(new IncludeNoteDialog())
 | 
				
			||||||
 | 
					            .child(new AddLinkDialog());
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user