comparison OrthancExplorer/explorer.js @ 2336:a95beca72e99 dcmtk-3.6.1

fix header and query/retrieve in Orthanc Explorer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 17 Jul 2017 11:49:54 +0200
parents ccd44d546b47
children 3372c5255333 7fbe3f024ac9
comparison
equal deleted inserted replaced
2335:174c3616ab6d 2336:a95beca72e99
332 dataType: 'json', 332 dataType: 'json',
333 async: false, 333 async: false,
334 cache: false, 334 cache: false,
335 success: function(s) { 335 success: function(s) {
336 if (s.Name != "") { 336 if (s.Name != "") {
337 $('.orthanc-name').append($('<a>') 337 $('.orthanc-name').html($('<a>')
338 .addClass('ui-link') 338 .addClass('ui-link')
339 .attr('href', 'explorer.html') 339 .attr('href', 'explorer.html')
340 .text(s.Name) 340 .text(s.Name)
341 .append(' &raquo; ')); 341 .append(' &raquo; '));
342 } 342 }
343 } 343 }
344 }); 344 });
345 }); 345 });
346 346