Authored by tmq

test

... ... @@ -404,13 +404,6 @@ define('yohood', function(require, exports) {
event.stopPropagation();
return false;
});
$(".brand-list").on("mouseenter", "li > a", function(event) {
var $img = $(this).find("img");
$img.removeClass("grey-brand-logo");
}).on("mouseleave", "li > a", function() {
var $img = $(this).find("img");
$img.addClass("grey-brand-logo");
})
//隐藏
$('.overlay').on('click', function() {
$(this).hide();
... ...
... ... @@ -57,13 +57,6 @@
seajs.use(['jquery', 'channel'], function($, channel) {
channel.common();
channel.brand();
$(".brand-list").on("mouseenter", "li > a", function(event) {
var $img = $(this).find("img");
$img.removeClass("grey-brand-logo");
}).on("mouseleave", "li > a", function() {
var $img = $(this).find("img");
$img.addClass("grey-brand-logo");
})
})
</script>
<?php $this->_endblock();?>
... ...