Log In
var MOCA = function () {
    // CONSTANTS
    // Events
    this.DID_ENTER_RANGE = "enterBeacon";
    this.DID_EXIT_RANGE = "exitBeacon";
    this.BEACON_PROXIMITY_CHANGE = "beaconProximityChange";
    this.DID_ENTER_PLACE = "enterPlace";
    this.DID_EXIT_PLACE = "exitPlace";
    this.DID_ENTER_ZONE = "enterZone";
    this.DID_EXIT_ZONE = "exitZone";

    // Actions
    this.DISPLAY_ALERT = "displayAlert";
    this.OPEN_URL = "openUrl";
    this.SHOW_EMBEDDED_HTML = "showEmbeddedHtml";
    this.PLAY_VIDEO_FROM_URL = "playVideo";
    this.IMAGE_FROM_URL = "showImage";
    this.PASSBOOK_FROM_URL = "addPassbook";
    this.ADD_TAG = "addTag";
    this.PLAY_NOTIFICATION_SOUND = "playSound";
    this.PERFORM_CUSTOM_ACTION = "customAction";

    // Other
    this.DID_LOADED_BEACONS_DATA = "didLoadedBeaconsData";
    
    this.APP_KEY = "moca_app_key";
    this.APP_SECRET = "moca_app_secret";

    this.GCM_SENDER_ID = "gcm_sender_id";
};