6 lines
193 B
JavaScript
6 lines
193 B
JavaScript
updateAllViewports = function() {
|
|
var viewports = $('.imageViewerViewport').not('.empty');
|
|
viewports.each(function(index, element) {
|
|
cornerstone.updateImage(element);
|
|
});
|
|
}; |