4c5e20adbdac951fb2f6c548bba4be553976ac29 tdreszer Fri Feb 25 16:48:17 2011 -0800 Brooke suggests 'is amung' instead of 'is (any of)'. diff --git src/hg/js/utils.js src/hg/js/utils.js index e6a7efe..20d4bba 100644 --- src/hg/js/utils.js +++ src/hg/js/utils.js @@ -1746,31 +1746,31 @@ function findTracksHandleNewMdbVals(response, status) { // Handle ajax response (repopulate a metadata val select) // This handles the currnet case when 2 vars have the same name (e.g. advanced, files tabs) var td = $('td#' + this.cmd ); if (td != undefined) { var usesFilterBy = ($("select.mdbVar[name='hgt_mdbVar"+this.num+"']").hasClass('noMulti') == false); td.empty(); td.append(response); var inp = $(td).find('.mdbVal'); var tdIsLike = $('td#isLike'+this.num); if (inp != undefined && tdIsLike != undefined) { if ($(inp).hasClass('freeText')) { $(tdIsLike).text('contains'); } else if (usesFilterBy && $(inp).hasClass('filterBy')) { - $(tdIsLike).text('is (any of)'); + $(tdIsLike).text('is among'); } else { $(tdIsLike).text('is'); } } $(td).find('.filterBy').each( function(i) { // Do this by 'each' to set noneIsAll individually if (usesFilterBy) { $(this).dropdownchecklist({ firstItemChecksAll: true, noneIsAll: true }); } else { $(this).attr("multiple",false); $(this).removeClass('filterBy'); $(this).show(); } }); } updateMetaDataHelpLinks(this.num);