12 lines
210 B
JavaScript
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 = '/'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
});
|