Analytics

Open the browser debugger to see the exceptionHandler send a normalized message to the analytics server.

Authorizations

Permission Authorized
7100 {{vm.isAuthorized ? 'Yes' : 'NO'}}
avUserAuthorizations.isAuthorized('7100').then(isAuthorized => { // result });

Utils

Print

Utility method that fixes window.print() for IE9-11 and Firefox from within an iframe

import { print } from 'availity-angular/lib/core/utils'; app.controller('DemoUtilsController', $scope => { $scope.vm = { onPrint() { print(); } }; });