Каждый раз, когда я запускаю какое-либо приложение реакции, выскакивает следующий фрагмент ошибки.
Uncaught TypeError: Cannot read property 'document' of undefined
at window.onload (content.js:5)
window.onload @ content.js:5
load (async)
(anonymous) @ content.js:1
Содержимое в content.js равно
window.onload=function()
{
//Create an object for the frame
var firstFrame = window.parent.frames[0].document;
//Set JQuery events to run in the context of the frame
$("#transliterateDiv", firstFrame).html("check");
chrome.storage.local.get('typeNepaliContents', function(result){
data = result;
});
}
Код не нарушает рабочий процесс реагирования, но ошибка все еще беспокоит меня. Что может быть быстрым решением проблемы?