Difference between revisions of "FBInstant.payments.onReady"
From GiderosMobile
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | '''Available since:''' Gideros 2018.3<br/> | + | '''<translate>Available since</translate>:''' Gideros 2018.3<br/> |
− | === Description === | + | === <translate>Description</translate> === |
<translate><br /> | <translate><br /> | ||
Sets a callback to be triggered when Payments operations are available.<br /> | Sets a callback to be triggered when Payments operations are available.<br /> | ||
Line 8: | Line 8: | ||
FBInstant.payments.onReady(callback) | FBInstant.payments.onReady(callback) | ||
</source> | </source> | ||
− | === Parameters === | + | === <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/> | ||
− | === Examples === | + | === <translate>Examples</translate> === |
'''Example'''<br/> | '''Example'''<br/> | ||
<source lang="lua"> | <source lang="lua"> |
Revision as of 07:28, 24 August 2018
Available since: Gideros 2018.3
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/>