/** 李鹏扬-v1.0.0 APP License By li.pengyang
*/
;(function () {
if ($(window).width() > 768) {
$('#bs-example-navbar-collapse-1 .dropdown').mouseenter(function () {
var _this = $(this);
_this.find('.dropdown-menu').show();
_this.siblings().find('.dropdown-menu').hide();
});
$('#bs-example-navbar-collapse-1 .dropdown').mouseleave(function () {
var _this = $(this);
_this.find('.dropdown-menu').hide();
});
}
})();