doc/en/search/opensearch/opensearch.js

10 lines
305 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

function install(link) {
if (typeof(window.external) != 'undefined' && typeof(window.external.AddSearchProvider) != 'undefined') {
window.external.AddSearchProvider(link.href);
return false;
} else {
return confirm("The plugin couldnt be installed automatically. Display it instead?");
}
}