1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-25 01:05:37 +00:00

Reflow some logic in google_video.js.

This commit is contained in:
Miciah Dashiel Butler Masters 2006-01-25 15:50:51 +00:00 committed by Miciah Dashiel Butler Masters
parent 8a4a18796b
commit 8391080201

View File

@ -2,13 +2,12 @@
* from the front page or the search page, and the video will automatically
* be loaded. */
function load_google_video(cached) {
if (cached.uri.match(/^http:\/\/video.google.com\/videoplay/)) {
var re;
re = /(<object data="\/googleplayer.swf\?videoUrl=)(.*?)(\&)/;
var uri = cached.content.match(re)[2];
if (!cached.uri.match(/^http:\/\/video.google.com\/videoplay/))
return true;
var re = /(<object data="\/googleplayer.swf\?videoUrl=)(.*?)(\&)/;
var uri = cached.content.match(re)[2];
if (uri) elinks.location = unescape(uri);
}
if (uri) elinks.location = unescape(uri);
return true;
}