Mark Sibly 8 years ago
parent
commit
d506203b4f
1 changed files with 4 additions and 2 deletions
  1. 4 2
      modules/mojox/action.monkey2

+ 4 - 2
modules/mojox/action.monkey2

@@ -136,13 +136,15 @@ Class Action
 	#rem monkeydoc Triggers the action.
 	#rem monkeydoc Triggers the action.
 	#end	
 	#end	
 	Method Trigger()
 	Method Trigger()
-		
+#If Not __WEB_TARGET__		
 		If _async
 		If _async
 			New Fiber( Triggered )
 			New Fiber( Triggered )
 		Else
 		Else
 			Triggered()
 			Triggered()
 		Endif
 		Endif
-		
+#Else
+		Triggered()
+#Endif
 	End
 	End
 	
 	
 	Private
 	Private