abd0e9db95bc01d7554a7fcffeff596b115ef4e1 tdreszer Tue Nov 15 15:31:55 2011 -0800 One-line change for an eleventh our bug: trackSearch [+][-] buttons not working. This may be a patch request. diff --git src/hg/js/utils.js src/hg/js/utils.js index 3c81a29..9c12d94 100644 --- src/hg/js/utils.js +++ src/hg/js/utils.js @@ -2038,31 +2038,31 @@ }, _checkAll: function (check) { // Checks/unchecks all found tracks. var selCbs = $('input.selCb'); $(selCbs).attr('checked',check); // All should have their vis enabled/disabled appropriately (false means don't update cart) $(selCbs).each( function(i) { findTracks.clickedOne(this,false); }); $('input.viewBtn').val('View in Browser'); findTracks.counts(); return false; // Pressing button does nothing more }, - checkAll: function (check) + checkAllWithWait: function (check) { waitOnFunction( findTracks._checkAll, check); }, searchButtonsEnable: function (enable) { // Displays visible and checked track count var searchButton = $('input[name="hgt_tSearch"]'); // NOTE: must match TRACK_SEARCH in hg/inc/searchTracks.h var clearButton = $('input.clear'); if(enable) { $(searchButton).attr('disabled',false); $(clearButton).attr('disabled',false); } else { $(searchButton).attr('disabled',true); $(clearButton).attr('disabled',true); }