@magicbell/magicbell-react
Version:
React components for building a notification inbox for your app
13 lines • 412 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.openActionUrl = openActionUrl;
/**
* Function that opens the `actionUrl` of a notification in the same window.
*
* @param notification The notification
*/
function openActionUrl(notification) {
if (notification.actionUrl)
window.open(notification.actionUrl, '_self');
}
//# sourceMappingURL=eventHandlers.js.map