bztang-admin/resources/views/admin/pluginslist.js

8 lines
446 B
JavaScript
Raw Permalink 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.

// 应用列表页面resources\views\admin\pluginslist.blade.php的js因模拟ctrl+f搜索会把<script></script>标签里的内容搜索出来,导致出错,故迁出至此。
// $(function () { $("[data-toggle='tooltip']").tooltip(); });
$(".plugin-a").mouseover(function(){
$(this).find("a").css("display","inherit");
});
$(".plugin-a").mouseleave(function () {
$(this).find("a").css("display","none");
})