mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-07 03:12:33 +01:00
changed my mind
This commit is contained in:
parent
8dc85407e6
commit
e8eb452f73
19
js/assets.js
19
js/assets.js
@ -382,17 +382,26 @@ var readLocalFile = function(path, callback) {
|
|||||||
reportBack('', 'Error');
|
reportBack('', 'Error');
|
||||||
};
|
};
|
||||||
|
|
||||||
var onCachedContentReady = function(details) {
|
var onCachedContentLoaded = function(details) {
|
||||||
//console.log('µBlock> readLocalFile("%s") / onCachedContentReady()', path);
|
//console.log('µBlock> readLocalFile("%s") / onCachedContentLoaded()', path);
|
||||||
|
reportBack(details.content);
|
||||||
|
};
|
||||||
|
|
||||||
|
var onCachedContentError = function(details) {
|
||||||
|
//console.error('µBlock> readLocalFile("%s") / onCachedContentError()', path);
|
||||||
|
if ( reIsExternalPath.test(path) ) {
|
||||||
|
reportBack('', 'Error: asset not found');
|
||||||
|
return;
|
||||||
|
}
|
||||||
// It's ok for user data to be empty
|
// It's ok for user data to be empty
|
||||||
if ( !details.error && (details.content !== '' || reIsUserPath.test(path)) ) {
|
if ( reIsUserPath.test(path) ) {
|
||||||
reportBack(details.content);
|
reportBack('');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
getTextFileFromURL(chrome.runtime.getURL(details.path), onInstallFileLoaded, onInstallFileError);
|
getTextFileFromURL(chrome.runtime.getURL(details.path), onInstallFileLoaded, onInstallFileError);
|
||||||
};
|
};
|
||||||
|
|
||||||
cachedAssetsManager.load(path, onCachedContentReady);
|
cachedAssetsManager.load(path, onCachedContentLoaded, onCachedContentError);
|
||||||
};
|
};
|
||||||
|
|
||||||
// https://www.youtube.com/watch?v=r9KVpuFPtHc
|
// https://www.youtube.com/watch?v=r9KVpuFPtHc
|
||||||
|
Loading…
Reference in New Issue
Block a user