16 lines
264 B
JavaScript
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;
|
|
}
|
|
});
|