Updated styled-components icon

main
Elbert Alias 7 years ago
parent 3a4886a532
commit 45bd501fcb

@ -181,7 +181,7 @@ var exports = {};
video_assets: opt_video_assets, video_assets: opt_video_assets,
assets: opt_assets, assets: opt_assets,
version: '3', version: '3',
mrev: 'b084b53-c', mrev: '4aeaa5a-c',
msgNum: this.msgNum, msgNum: this.msgNum,
timestamp: new Date().getTime(), timestamp: new Date().getTime(),
pageVis: document.visibilityState, pageVis: document.visibilityState,
@ -890,7 +890,7 @@ var exports = {};
var _pageTags; var _pageTags;
var INIT_MS_BW_SEARCHES = 2000; var INIT_MS_BW_SEARCHES = 2000;
var PAGE_TAG_RE = new RegExp('gpt|oascentral'); var PAGE_TAG_RE = new RegExp('gpt|oascentral');
var POST_MSG_ID = '1510070508-5767-8848-29475-8984'; var POST_MSG_ID = '1511804838-25881-9878-26947-14879';
var AD_SERVER_RE = new RegExp('^(google_ads_iframe|oas_frame|atwAdFrame)'); var AD_SERVER_RE = new RegExp('^(google_ads_iframe|oas_frame|atwAdFrame)');
function getPageTags(doc) { function getPageTags(doc) {

@ -440,8 +440,9 @@
} }
if ( this.isYoutubeAdReq(frameUrl, requestUrl) ) { if ( this.isYoutubeAdReq(frameUrl, requestUrl) ) {
var videoId = this.parseYoutubeVideoIdFromUrl(requestUrl); var destVideoId = this.parseYoutubeVideoIdFromUrl(requestUrl);
if ( videoId ) { var srcVideoId = this.parseYoutubeVideoIdFromUrl(frameUrl);
if ( srcVideoId && destVideoId ) {
request.isYoutubeAd = true; request.isYoutubeAd = true;
request.isVideo = true; request.isVideo = true;
request.rawSrcUrl = frameUrl; request.rawSrcUrl = frameUrl;
@ -535,7 +536,7 @@
return match[1]; return match[1];
} }
re = /^https?:\/\/www\.youtube\.com\/watch\?v=(.*$)/; re = /^https?:\/\/www\.youtube\.com\/watch.*(\?|&)v=([^&]*)/;
match = re.exec(url); match = re.exec(url);
if ( match && match.length > 1 ) { if ( match && match.length > 1 ) {
return match[1]; return match[1];

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 8.9 KiB