ohif-viewer/Packages/ohif-core/main.js
2016-08-03 11:13:48 -03:00

13 lines
218 B
JavaScript

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