Skip to content

Instantly share code, notes, and snippets.

@maplink-master
Last active February 22, 2016 14:30
Show Gist options
  • Save maplink-master/85590e9215d938fc452f to your computer and use it in GitHub Desktop.
Save maplink-master/85590e9215d938fc452f to your computer and use it in GitHub Desktop.
MaplinkAPI Javacript Events
instance.on( 'event-name', yourcallback )
instance.once( 'event-name', callback )
instance.off( 'event-name', callback )
instance.fire( 'event-name', callback )
//example using freeform
var instance = mplk.freeform( 'div-id' )
instance.on( 'select', function( data ) { console.log( data ) } )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment