123456789101112131415161718192021222324252627282930 |
- window.searx = (function(d) {
- 'use strict';
-
- var script = d.currentScript || (function() {
- var scripts = d.getElementsByTagName('script');
- return scripts[scripts.length - 1];
- })();
- return {
- autocompleter: script.getAttribute('data-autocompleter') === 'true',
- method: script.getAttribute('data-method')
- };
- })(document);
|