From 01df7aa50a2f417044f31891bcc0f937f3bb8fe0 Mon Sep 17 00:00:00 2001 From: YFdyh000 Date: Tue, 7 Apr 2015 09:26:05 +0800 Subject: [PATCH] Correct issue links --- platform/chromium/vapi-background.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/platform/chromium/vapi-background.js b/platform/chromium/vapi-background.js index de20116..3dbc379 100644 --- a/platform/chromium/vapi-background.js +++ b/platform/chromium/vapi-background.js @@ -382,8 +382,8 @@ vAPI.tabs.injectScript = function(tabId, details, callback) { // Must read: https://code.google.com/p/chromium/issues/detail?id=410868#c8 -// https://github.com/gorhill/uBlock/issues/19 -// https://github.com/gorhill/uBlock/issues/207 +// https://github.com/chrisaljoudi/uBlock/issues/19 +// https://github.com/chrisaljoudi/uBlock/issues/207 // Since we may be called asynchronously, the tab id may not exist // anymore, so this ensures it does still exist. @@ -548,7 +548,7 @@ CallbackWrapper.prototype.init = function(port, request) { }; CallbackWrapper.prototype.proxy = function(response) { - // https://github.com/gorhill/uBlock/issues/383 + // https://github.com/chrisaljoudi/uBlock/issues/383 if ( this.messaging.ports.hasOwnProperty(this.port.name) ) { this.port.postMessage({ requestId: this.request.requestId, @@ -585,7 +585,7 @@ vAPI.net.registerListeners = function() { var tail = µburi.path.slice(-6); var pos = tail.lastIndexOf('.'); - // https://github.com/gorhill/uBlock/issues/862 + // https://github.com/chrisaljoudi/uBlock/issues/862 // If no transposition possible, transpose to `object` as per // Chromium bug 410382 (see below) if ( pos === -1 ) { @@ -706,7 +706,7 @@ vAPI.onLoadAllCompleted = function() { while ( i-- ) { tab = tabs[i]; µb.bindTabToPageStats(tab.id, tab.url); - // https://github.com/gorhill/uBlock/issues/129 + // https://github.com/chrisaljoudi/uBlock/issues/129 scriptStart(tab.id); } };