comparison OrthancExplorer/explorer.js @ 165:f2ae23682353 Orthanc-0.2.3

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 26 Oct 2012 15:18:11 +0200
parents 5b6b5c9f280f
children bee20e978835
comparison
equal deleted inserted replaced
164:dcf6475e2b40 165:f2ae23682353
323 $.ajax({ 323 $.ajax({
324 url: '../system', 324 url: '../system',
325 dataType: 'json', 325 dataType: 'json',
326 async: false, 326 async: false,
327 success: function(s) { 327 success: function(s) {
328 $('.orthanc-name').html('<a class="ui-link" href="explorer.html">' + s.Name + '</a> &raquo; '); 328 if (s.Name != "") {
329 $('.orthanc-name').html('<a class="ui-link" href="explorer.html">' + s.Name + '</a> &raquo; ');
330 }
329 } 331 }
330 }); 332 });
331 }); 333 });
332 334
333 335