Difference between revisions of "FBInstant.onPause"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
<languages />
 
'''<translate>Available since</translate>:''' Gideros 2018.3<br/>
 
'''<translate>Available since</translate>:''' Gideros 2018.3<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/* Initialisation and Core|* Initialisation and Core]]<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/* Initialisation and Core|* Initialisation and Core]]<br/>

Revision as of 10:59, 3 September 2018


Available since: Gideros 2018.3
Class: * Initialisation and Core

Description


Set a callback to be fired when a pause event is triggered.

 FBInstant.onPause(callback)

Parameters

callback: (function) A function to call when a pause event occurs.

Examples

Example

FBInstant.onPause( function()
	print("Pause event was triggered.")
end)
<br/>