Fix keyscroll.

This commit is contained in:
James Petts 2018-11-12 11:18:48 +00:00
parent edfbad10af
commit 5019f539ee

View File

@ -1,4 +1,7 @@
import { viewportUtils } from './viewportUtils'; import { viewportUtils } from './viewportUtils';
import { cornerstoneTools } from 'meteor/ohif:cornerstone';
const scroll = cornerstoneTools.import('util/scroll');
/** /**
* This function switches to an image given an element and * This function switches to an image given an element and
@ -11,5 +14,5 @@ import { viewportUtils } from './viewportUtils';
*/ */
export function switchToImageRelative(distanceFromCurrentIndex) { export function switchToImageRelative(distanceFromCurrentIndex) {
var element = viewportUtils.getActiveViewportElement(); var element = viewportUtils.getActiveViewportElement();
cornerstoneTools.scroll(element, distanceFromCurrentIndex); scroll(element, distanceFromCurrentIndex);
} }