Difference between revisions of "FBInstant.payments.onReady"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 9: Line 9:
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
  FBInstant.payments.onReady(callback)
 
  FBInstant.payments.onReady(callback)
</source>
+
</syntaxhighlight>
 
=== <translate>Parameters</translate> ===
 
=== <translate>Parameters</translate> ===
 
'''callback''': (function) <translate>A functionto be executed when Payments are available</translate> <br/>
 
'''callback''': (function) <translate>A functionto be executed when Payments are available</translate> <br/>
Line 18: Line 18:
 
print("Payments Ready!")
 
print("Payments Ready!")
 
end)
 
end)
<br/></source>
+
<br/></syntaxhighlight>
  
 
{{FBInstant.payments}}
 
{{FBInstant.payments}}

Latest revision as of 15:29, 13 July 2023


Available since: Gideros 2018.3
Class: Payments

Description


Sets a callback to be triggered when Payments operations are available.

 FBInstant.payments.onReady(callback)

Parameters

callback: (function) A functionto be executed when Payments are available

Examples

Example

FBInstant.payments.onReady(function()
	print("Payments Ready!")
end)
<br/>