Files
EasySoft-ZenTaoPMS/module/editor/js/index.js
2018-04-25 09:40:09 +08:00

13 lines
306 B
JavaScript

$(function()
{
var showHeight = $('#main').height() - $('#mainMenu').height() - 40;
$('#editWin').height(showHeight);
$('#extendWin').height(showHeight);
$('.side-col a').click(function()
{
$('.side-col a.active').removeClass('active');
$(this).addClass('active');
});
});