21 lines
500 B
JavaScript
21 lines
500 B
JavaScript
import { OHIF } from 'meteor/ohif:core';
|
|
|
|
Template.matchedProtocols.helpers({
|
|
/**
|
|
* Reactively re-render the MatchedProtocols Collection contents
|
|
*/
|
|
matchedProtocols() {
|
|
return MatchedProtocols.find();
|
|
}
|
|
});
|
|
|
|
Template.matchedProtocols.events({
|
|
/**
|
|
* Instruct the ProtocolEngine to apply the specified Hanging Protocol
|
|
*/
|
|
'click .matchedProtocol': function() {
|
|
var protocol = this;
|
|
ProtocolEngine.setHangingProtocol(protocol);
|
|
}
|
|
});
|