cld-custom.js 374 B

123456789
  1. function autoFlashHeight(){
  2. function getObjHeight(select) {
  3. return select.length > 0 ? select.height() : 0;
  4. }
  5. var splog = getObjHeight($(".sheet-panel-log"));
  6. $(".sheet-panel-content").height($(window).height()-138);
  7. $(".modal-search-height").height($(window).height()-226);
  8. $(".sheet-panel-righttop").height($(window).height()-splog-244);
  9. };