所有控件提示tooltip移除对移动设备的判断,支持移动终端
This commit is contained in:
parent
941fbe22f9
commit
32fef7869c
|
@ -55,7 +55,7 @@ $(function () {
|
|||
scrollTop: 0
|
||||
}, 200);
|
||||
});
|
||||
if (!$.browser.versions.mobile) $('[role="tooltip"]').lgbTooltip();
|
||||
$('[role="tooltip"]').lgbTooltip();
|
||||
|
||||
// breadcrumb
|
||||
var arch = $('#nav-accordion').find('a.active').last();
|
||||
|
|
|
@ -149,7 +149,7 @@
|
|||
}).join('');
|
||||
$sortable.append($.format('<li class="title">{0}-{1}</li>', options.item.Desc, options.item.Key));
|
||||
$sortable.append(content);
|
||||
if (!$.browser.versions.mobile) $sortable.find('[role="tooltip"]').lgbTooltip();
|
||||
$sortable.find('[role="tooltip"]').lgbTooltip();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
return $.format(htmlNewUsers, noti.UserName, noti.Description, noti.RegisterTime, noti.ID, noti.DisplayName);
|
||||
}).join('');
|
||||
$taskUsers.append(content);
|
||||
if (!$.browser.versions.mobile) $('#tasks-users').find('[role="tooltip"]').lgbTooltip();
|
||||
$('#tasks-users').find('[role="tooltip"]').lgbTooltip();
|
||||
}
|
||||
$btnRefreshUser.toggleClass('fa-spin');
|
||||
}
|
||||
|
@ -23,10 +23,9 @@
|
|||
}
|
||||
listData();
|
||||
|
||||
$btnRefreshUser.on('click', function () {
|
||||
$btnRefreshUser.lgbTooltip().on('click', function () {
|
||||
listData();
|
||||
});
|
||||
if (!$.browser.versions.mobile) $btnRefreshUser.lgbTooltip();
|
||||
|
||||
$('#tasks-users').on('click', 'button', function () {
|
||||
var id = $(this).attr('data-id');
|
||||
|
|
Loading…
Reference in New Issue