comparison OrthancExplorer/explorer.js @ 167:9bb7e8277e15

merge
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 26 Oct 2012 15:19:47 +0200
parents f2ae23682353
children bee20e978835
comparison
equal deleted inserted replaced
163:91ed72ab2b05 167:9bb7e8277e15
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