Authored by 陈峰

Merge branch 'release/6.9.2' into 'master'

Release/6.9.2



See merge request !434
{
"name": "yohobuy-node",
"version": "6.8.7",
"version": "6.9.2",
"private": true,
"description": "A New Yohobuy Project With Express",
"repository": {
... ...
... ... @@ -24,6 +24,15 @@ function _getDetailDataBySizeInfo(intro) {
// 视频链接处理
$intro = $(intro);
$intro.find('a[href]').each(function() {
const $el = $(this);
$el.attr('href', 'javascript:;') //eslint-disable-line
.attr('target', '')
.attr('title', '')
.css('cursor', 'initial');
});
$intro.find('.video-placeholder').each(function(idx, ele) {
var $this = $(ele);
var videoSrc = $this.find('source').attr('src');
... ...