apps/com.actionsoft.apps.kms/web/com.actionsoft.apps.kms/js/com.actionsoft.apps.kms.dimensiongridPageIframe.js
2024-10-31 15:37:23 +08:00

26 lines
633 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

var browseCard;
$(function() {
// 初始化右侧浏览dialog
browseCard = $('#browseCardDialog').browsecard({
mePhoto : mePhoto,
isFavoriteAppActive : isFavoriteAppActive,
isOnlinedocAppActive: isOnlinedocAppActive,
canPreviewType : canPreviewType,
isNetworkAppActive : isNetworkAppActive,
browserPreview: $.grep(browserPreview.split(','), function (n, i) {// 浏览器直接预览不调用onlinedoc
return n != '';
})
});
});
/**
* 利用jquery组织冒泡
*
* @param event
* @returns
*/
function stopPropagation(event) {
var eve = $.Event(event);
eve.stopPropagation();
return false;
}