ohif-viewer/Packages/ohif-core/main.js
2016-11-15 08:24:01 +01:00

19 lines
300 B
JavaScript

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