Series/Details rezie title

New: Series title will resize on details page if its too long
This commit is contained in:
Mark McDowall 2012-10-28 10:48:38 -07:00
commit 50ad661a95
3 changed files with 19 additions and 6 deletions

View file

@ -10,7 +10,13 @@
Math.max($spec.index(lastCheckbox), $spec.index(e.target)) + 1
).prop('checked', e.target.checked);
}
lastCheckbox = e.target;
lastCheckbox = e.targety()
});
};
})(jQuery);
})(jQuery);
$(document).ready(function () {
while($('#logo span').height() > $('#logo').height()) {
$('#logo span').css('font-size', (parseInt($('#logo span').css('font-size')) - 1) + "px" );
};
});