ohif-viewer/Packages/ohif-core/main.js

17 lines
269 B
JavaScript

/*
* Defines the base OHIF object
*/
const OHIF = {
log: {},
viewer: {},
measurements: {}
};
// Expose the OHIF object to the client if it is on development mode
if (Meteor.isDevelopment && Meteor.isClient) {
window.OHIF = OHIF;
}
export { OHIF };