Changeset 6253
- Timestamp:
- May 25, 2021, 4:11:50 PM (2 years ago)
- Location:
- extensions/net.sf.basedb.varsearch/trunk/resources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.varsearch/trunk/resources/hit-details.js
r6173 r6253 13 13 url += '&lineNo='+Data.int('page-data', 'line'); 14 14 url += '&idx='+encodeURIComponent(Data.get('page-data', 'idx')); 15 15 Wizard.showLoadingAnimation('Loading variant data...'); 16 16 Wizard.asyncJsonRequest(url, details.detailsLoaded); 17 17 } … … 20 20 { 21 21 Doc.show('variant'); 22 Doc.removeClass('content', 'bottomborder'); 22 23 var rba = response.rba; 23 24 var file = response.file; -
extensions/net.sf.basedb.varsearch/trunk/resources/hit-details.jsp
r6173 r6253 32 32 <base:head 33 33 scripts="tabcontrol-2.js,~hit-details.js,~varsearch.js" 34 styles="tabcontrol.css "34 styles="tabcontrol.css,~css/varsearch.css" 35 35 > 36 36 <style> … … 49 49 white-space: nowrap; 50 50 } 51 #wizard-status 52 { 53 margin-top: 1.75em; 54 } 51 55 </style> 52 56 </base:head> … … 58 62 ></div> 59 63 60 <div class="content ">64 <div class="content bottomborder" id="content"> 61 65 <t:tabcontrol 62 66 id="variant" -
extensions/net.sf.basedb.varsearch/trunk/resources/varsearch.js
r6249 r6253 223 223 varsearch.niceCount = function(count) 224 224 { 225 return count.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1 ,');225 return count.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1 '); //   == NARROW NO-BREAK SPACE 226 226 } 227 227
Note: See TracChangeset
for help on using the changeset viewer.