1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

minor changes

This commit is contained in:
gorhill 2015-11-06 14:18:40 -05:00
parent 152c9454fe
commit 35474f0146
2 changed files with 18 additions and 9 deletions

View File

@ -209,7 +209,7 @@ var contentObserver = {
url: location.spec url: location.spec
}; };
//console.log('shouldLoad: type=' + type' ' + 'url=' + location.spec); //console.log('shouldLoad: type=' + type + ' url=' + location.spec);
var r; var r;
if ( typeof messageManager.sendRpcMessage === 'function' ) { if ( typeof messageManager.sendRpcMessage === 'function' ) {
// https://bugzil.la/1092216 // https://bugzil.la/1092216

View File

@ -1867,6 +1867,18 @@ var httpObserver = {
} }
}, },
// Pending request ring buffer:
// +-------+-------+-------+-------+-------+-------+-------
// |0 |1 |2 |3 |4 |5 |...
// +-------+-------+-------+-------+-------+-------+-------
//
// URL to ring buffer index map:
// { k = URL, v = ring buffer index }
//
// v can an integer or an Array of integer (for when the same URL is
// received multiple times by shouldLoadListener() before the existing one
// is serviced by the network request observer.
createPendingRequest: function(url) { createPendingRequest: function(url) {
var bucket; var bucket;
var i = this.pendingWritePointer; var i = this.pendingWritePointer;
@ -1876,14 +1888,12 @@ var httpObserver = {
if ( preq._key !== '' ) { if ( preq._key !== '' ) {
bucket = this.pendingURLToIndex.get(preq._key); bucket = this.pendingURLToIndex.get(preq._key);
if ( Array.isArray(bucket) ) { if ( Array.isArray(bucket) ) {
// Assuming i in array
var pos = bucket.indexOf(i); var pos = bucket.indexOf(i);
bucket.splice(pos, 1); bucket.splice(pos, 1);
if ( bucket.length === 1 ) { if ( bucket.length === 1 ) {
this.pendingURLToIndex.set(preq._key, bucket[0]); this.pendingURLToIndex.set(preq._key, bucket[0]);
} }
} else if ( typeof bucket === 'number' ) { } else if ( typeof bucket === 'number' ) {
// Assuming bucket === i
this.pendingURLToIndex.delete(preq._key); this.pendingURLToIndex.delete(preq._key);
} }
} }
@ -3051,7 +3061,6 @@ vAPI.contextMenu = {
vAPI.contextMenu.displayMenuItem = function({target}) { vAPI.contextMenu.displayMenuItem = function({target}) {
var doc = target.ownerDocument; var doc = target.ownerDocument;
var gContextMenu = doc.defaultView.gContextMenu; var gContextMenu = doc.defaultView.gContextMenu;
if ( !gContextMenu.browser ) { if ( !gContextMenu.browser ) {
return; return;
} }
@ -3062,14 +3071,14 @@ vAPI.contextMenu.displayMenuItem = function({target}) {
// https://github.com/chrisaljoudi/uBlock/issues/105 // https://github.com/chrisaljoudi/uBlock/issues/105
// TODO: Should the element picker works on any kind of pages? // TODO: Should the element picker works on any kind of pages?
if ( !currentURI.schemeIs('http') && !currentURI.schemeIs('https') ) { if ( !currentURI.schemeIs('http') && !currentURI.schemeIs('https') ) {
menuitem.hidden = true; menuitem.setAttribute('hidden', true);
return; return;
} }
var ctx = vAPI.contextMenu.contexts; var ctx = vAPI.contextMenu.contexts;
if ( !ctx ) { if ( !ctx ) {
menuitem.hidden = false; menuitem.setAttribute('hidden', false);
return; return;
} }
@ -3085,19 +3094,19 @@ vAPI.contextMenu.displayMenuItem = function({target}) {
!gContextMenu.onVideo && !gContextMenu.onVideo &&
!gContextMenu.onAudio !gContextMenu.onAudio
) { ) {
menuitem.hidden = false; menuitem.setAttribute('hidden', false);
return; return;
} }
if ( if (
ctxMap.hasOwnProperty(context) && ctxMap.hasOwnProperty(context) &&
gContextMenu[ctxMap[context]] gContextMenu[ctxMap[context]]
) { ) {
menuitem.hidden = false; menuitem.setAttribute('hidden', false);
return; return;
} }
} }
menuitem.hidden = true; menuitem.setAttribute('hidden', true);
}; };
/******************************************************************************/ /******************************************************************************/