You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Areas/SoftMng/Content/common-js/site.js

12 lines
251 B
JavaScript

//通用初始化对象
var SiteComponents = {
//提示框初始化
ToolTip: function () {
$('[data-toggle="tooltip"]').tooltip({
// container: 'body',
delay: { "show": 100, "hide": 150 }
});
}
}