Primary Identifier | MGI:6444894 | Allele Type | Targeted |
Attribute String | Null/knockout | Gene | Cyrib |
Transmission | Germline | Strain of Origin | C57BL/6N-A<tm1Brd> |
Is Recombinase | false | Is Wild Type | false |
Project Collection | KOMP-CSD |
molecularNote | The conditional-ready and reporter-less
function showMoreInlineList(listDiv) {
jQuery(listDiv + ' ul li').each(function(index) {
if (!jQuery(this).is(":visible")) {
jQuery(this).show();
}
});
jQuery(listDiv + ' ul li.show-more').hide();
}
function applyShowMoreInlineList(listDiv, listLength) {
jQuery(listDiv + ' ul li').each(function(index) {
listLength -= jQuery(this).text().length;
if (listLength <= 0) {
jQuery(this).hide();
}
});
if (listLength <= 0) {
jQuery('', {
'class': 'show-more',
'html': jQuery('', {
'href': '#',
'title': 'Show more items',
'text': 'Show more',
'click': function(e) {
showMoreInlineList(listDiv);
e.preventDefault();
}
})
}).appendTo(listDiv + ' ul');
}
}
|