ohif-viewer/Packages/ohif-viewerbase/client/components/basic/aboutModal/aboutModal.js
2018-12-02 08:23:43 +01:00

16 lines
264 B
JavaScript

import { OHIF } from 'meteor/ohif:core';
Template.aboutModal.helpers({
githubUrl() {
return 'https://github.com/OHIF/Viewers';
},
gitSHA() {
return OHIF.info.sha;
},
gitVersion() {
return OHIF.info.version;
}
});