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