Authored by 陈峰

Merge branch 'feature/detail-link' into 'release/6.9.2'

Feature/detail link



See merge request !433
... ... @@ -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');
... ...