Skip to main content

_aimtellReady()

Description: Called when aimtell script has finished loading.

Example

function _aimtellReady(){
  alert("Everything is loaded!");
}

_aimtellPermissionGranted()

Description: Called after website visitor has granted push notification permissions.

Example

function _aimtellPermissionGranted(){
 alert("Thanks, you're now subscribed!");
}

_aimtellPermissionIgnored()

Description: Called after website visitor has ignored push notification permissions. (clicking “x” on the request dialog)

Example

function _aimtellPermissionIgnored(){
 alert("Oh no, you ignored me!");
}

_aimtellPermissionDenied()

Description: Called after website visitor has denied push notification permissions.

Example

function _aimtellPermissionDenied(){
 alert("Oh no, you denied me!");
}