ohif-viewer/Packages/hipaa-audit-log/components/hipaaCloseButton/hipaaCloseButton.js
2016-11-15 08:29:46 +01:00

12 lines
210 B
JavaScript

Template.hipaaCloseButton.events({
'click button': function() {
var history = window.history;
if(history.length > 0) {
history.go(-1);
}
else {
window.location = '/'
}
}
});