We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3393aac commit 0dcf4acCopy full SHA for 0dcf4ac
docs/app/assets/js/search-worker.js
@@ -26,7 +26,7 @@ searchDataRequest.onload = function() {
26
searchData.forEach(function(page) {
27
index.add(page);
28
});
29
- postMessage({e: 'index-ready'});
+ self.postMessage({e: 'index-ready'});
30
};
31
searchDataRequest.open('GET', 'search-data.json');
32
searchDataRequest.send();
docs/app/src/.eslintrc.json
@@ -3,10 +3,6 @@
3
"extends": "../../../.eslintrc-browser.json",
4
5
"globals": {
6
- // ngMocks
7
- "module": false,
8
- "inject": true,
9
-
10
"lunr": false
11
}
12
0 commit comments