- Repocopy from www/<lang> to head/<lang>/htdocs to eliminate duplicate information in the www and the doc directory. - Add various administration files to svnadmin. Approved by: doceng (implicit)
10 lines
305 B
JavaScript
10 lines
305 B
JavaScript
|
||
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 couldn’t be installed automatically. Display it instead?");
|
||
}
|
||
}
|
||
|