ctm.like

The method of the JS Bridge functionality is intended to add a like to the current slide. Likes are stored in the record of the Application Stats object.

Query Format

ctm.like()

Handler

Use a handler function to describe the output format of the query results, e.g., to display the results of operations or method errors for debugging purposes.

ctm.like()
ctm.like( function(response){
    console.log('Result', response);
})

The results:

{
    "success": true"
}
``