Files
EasySoft-ZenTaoPMS/module/editor/js/index.js
2014-04-08 13:55:05 +08:00

9 lines
311 B
JavaScript

$(function()
{
var showHeight = $('.outer').height() - $('#featurebar').height() - 40;
$('#editWin').height(showHeight);
$('#extendWin').height(showHeight);
$('.panel a.list-group-item').click(function(){$('.panel a.list-group-item.active').removeClass('active'); $(this).addClass('active')});
});