Mercurial > hg > orthanc-webviewer
view Resources/OrthancExplorer.js @ 209:2f27287c047c
preparing for 2019
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 24 Dec 2018 13:47:11 +0100 |
parents | 465bed3c5c81 |
children | 0f042939410d |
line wrap: on
line source
$('#series').live('pagebeforecreate', function() { //$('#series-preview').parent().remove(); var b = $('<a>') .attr('data-role', 'button') .attr('href', '#') .attr('data-icon', 'search') .attr('data-theme', 'e') .text('Orthanc Web Viewer'); b.insertBefore($('#series-delete').parent().parent()); b.click(function() { if ($.mobile.pageData) { var series = $.mobile.pageData.uuid; window.open('../web-viewer/app/viewer.html?series=' + series); } }); });