7 lines
224 B
JavaScript
7 lines
224 B
JavaScript
Template.playClipButton.helpers({
|
|
'isPlaying': function() {
|
|
Session.get('UpdateCINE');
|
|
var activeViewport = Session.get('activeViewport');
|
|
return !!OHIF.viewer.isPlaying[activeViewport];
|
|
}
|
|
}); |