|
|
|
@ -1011,6 +1011,13 @@ function showNormalImage(id) {
|
|
|
|
|
if (description_images.length>0) {
|
|
|
|
|
for (var i=0; i<description_images.length; i++){
|
|
|
|
|
var image=$(description_images[i]);
|
|
|
|
|
var _path = getRootPath();
|
|
|
|
|
//如果图片是视频图片,不处理。
|
|
|
|
|
if($(image).hasClass("mediaIco")){
|
|
|
|
|
var _src = _path+"/"+$(image).attr('src');
|
|
|
|
|
$(image).attr('src',_src);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
var element=$("<a></a>").attr("href",image.attr('src'));
|
|
|
|
|
image.wrap(element);
|
|
|
|
|
$(image).parent().colorbox({rel:'nofollow', close: "关闭", returnFocus: false});
|
|
|
|
@ -1020,6 +1027,7 @@ function showNormalImage(id) {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//文件、帖子、通知分享
|
|
|
|
|
function org_id_click(){
|
|
|
|
|
var sendText = $("input[name='org_id']:checked").next().text();
|
|
|
|
@ -1152,3 +1160,17 @@ function disable_down(source, des, hint){
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getRootPath(){
|
|
|
|
|
//获取当前网址,如: http://localhost:8083/uimcardprj/share/meun.jsp
|
|
|
|
|
var curWwwPath=window.document.location.href;
|
|
|
|
|
//获取主机地址之后的目录,如: uimcardprj/share/meun.jsp
|
|
|
|
|
var pathName=window.document.location.pathname;
|
|
|
|
|
var pos=curWwwPath.indexOf(pathName);
|
|
|
|
|
//获取主机地址,如: http://localhost:8083
|
|
|
|
|
var localhostPaht=curWwwPath.substring(0,pos);
|
|
|
|
|
//获取带"/"的项目名,如:/uimcardprj
|
|
|
|
|
var projectName=pathName.substring(0,pathName.substr(1).indexOf('/')+1);
|
|
|
|
|
return(localhostPaht+projectName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|