MyCrypto/shared/enclave/preload.ts

8 lines
219 B
TypeScript
Raw Normal View History

import { webFrame } from 'electron';
import { PROTOCOL_NAME } from 'shared/enclave/utils';
2018-05-04 15:56:17 +00:00
export function registerProtocol() {
2018-04-30 17:17:17 +00:00
// Whitelist custom protocol
webFrame.registerURLSchemeAsPrivileged(PROTOCOL_NAME);
}