1.修改重复跟错误的国际化配置
2.修改机构管理相关页面
This commit is contained in:
19
src/main/webapp/static/global/scripts/wsize.min.js
vendored
Normal file
19
src/main/webapp/static/global/scripts/wsize.min.js
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
/*!
|
||||
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
|
||||
*
|
||||
* 主框架窗口大小调整
|
||||
* @author ThinkGem
|
||||
* @version 2013-11-09
|
||||
*/
|
||||
$("#left").width(leftWidth);
|
||||
$("#openClose").click(function(){if($(this).hasClass("close")){
|
||||
$(this).removeClass("close");
|
||||
$(this).addClass("open");
|
||||
$("#left").animate({width:0,opacity:"hide"});
|
||||
$("#right").animate({width:$("#content").width()-$("#openClose").width()-5},function(){
|
||||
if(typeof openCloseClickCallBack=="function"){openCloseClickCallBack(true)}wSize()})}
|
||||
else{$(this).addClass("close");$(this).removeClass("open");$("#left").animate({width:leftWidth,opacity:"show"});
|
||||
$("#right").animate({width:$("#content").width()-$("#openClose").width()-leftWidth-9},
|
||||
function(){if(typeof openCloseClickCallBack=="function"){openCloseClickCallBack(true)}wSize()})}});
|
||||
if(!Array.prototype.map){Array.prototype.map=function(e,d){var a=[],b=0;for(var c=0,f=this.length;c<f;c++){if(c in this){a[b++]=e.call(d,this[c],c,this)}}return a}}var getWindowSize=function(){return["Height","Width"].map(function(a){return window["inner"+a]||document.compatMode==="CSS1Compat"&&document.documentElement["client"+a]||document.body["client"+a]})};$(window).resize(function(){wSize()});
|
||||
wSize();
|
||||
Reference in New Issue
Block a user