9 lines
223 B
JavaScript
9 lines
223 B
JavaScript
import $ from 'jquery';
|
|
|
|
export function updateAllViewports() {
|
|
var viewports = $('.imageViewerViewport').not('.empty');
|
|
viewports.each(function(index, element) {
|
|
cornerstone.updateImage(element);
|
|
});
|
|
}
|