mirror of
				https://github.com/Jermolene/TiddlyWiki5
				synced 2025-10-30 23:23:02 +00:00 
			
		
		
		
	Rename "tw-*" messages to "tm-*"
This commit is contained in:
		| @@ -22,22 +22,22 @@ exports.synchronous = true; | ||||
| exports.startup = function() { | ||||
| 	// Install the modal message mechanism | ||||
| 	$tw.modal = new $tw.utils.Modal($tw.wiki); | ||||
| 	$tw.rootWidget.addEventListener("tw-modal",function(event) { | ||||
| 	$tw.rootWidget.addEventListener("tm-modal",function(event) { | ||||
| 		$tw.modal.display(event.param); | ||||
| 	}); | ||||
| 	// Install the notification  mechanism | ||||
| 	$tw.notifier = new $tw.utils.Notifier($tw.wiki); | ||||
| 	$tw.rootWidget.addEventListener("tw-notify",function(event) { | ||||
| 	$tw.rootWidget.addEventListener("tm-notify",function(event) { | ||||
| 		$tw.notifier.display(event.param); | ||||
| 	}); | ||||
| 	// Install the scroller | ||||
| 	$tw.pageScroller = new $tw.utils.PageScroller(); | ||||
| 	$tw.rootWidget.addEventListener("tw-scroll",function(event) { | ||||
| 	$tw.rootWidget.addEventListener("tm-scroll",function(event) { | ||||
| 		$tw.pageScroller.handleEvent(event); | ||||
| 	}); | ||||
| 	var fullscreen = $tw.utils.getFullScreenApis(); | ||||
| 	if(fullscreen) { | ||||
| 		$tw.rootWidget.addEventListener("tw-full-screen",function(event) { | ||||
| 		$tw.rootWidget.addEventListener("tm-full-screen",function(event) { | ||||
| 			if(document[fullscreen._fullscreenElement]) { | ||||
| 				document[fullscreen._exitFullscreen](); | ||||
| 			} else { | ||||
| @@ -48,7 +48,7 @@ exports.startup = function() { | ||||
| 	// If we're being viewed on a data: URI then give instructions for how to save | ||||
| 	if(document.location.protocol === "data:") { | ||||
| 		$tw.rootWidget.dispatchEvent({ | ||||
| 			type: "tw-modal", | ||||
| 			type: "tm-modal", | ||||
| 			param: "$:/language/Modals/SaveInstructions" | ||||
| 		}); | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jermolene
					Jermolene