Streaming fills up browser's history
|
|
Hello! Currently when streaming is turned on, it ignores user's preferences on how many results per page google should return. I believe it retrieve 25 or 50 results.
I've posted working code under bugs report topic, but since then source had been changed, so here is updated changes: Find:
Then find:
Thank you. |
|
|
Yeap V@no... but we have a compatibility problem with Opera. In next version will be:
if(isOpera){
iframe.src = (isReverse ? prevUrl : nextUrl) + '#gfx-ap';
} else {
iframe.contentWindow.location.replace(nextUrl + '#gfx-ap');
}
and
// Prevent Double Ejecution
if(isOpera){
if(lastSrc == iframe.src){ return; }
lastSrc = iframe.src;
} else {
if(lastSrc == iframe.contentWindow.location){ return; }
lastSrc = iframe.contentWindow.location;
}
|