Fixed directory structure, removed buildxpi.sh and added mkxpi

This commit is contained in:
Johannes Findeisen 2009-10-20 17:02:53 +02:00
commit 4ca756a5eb
10 changed files with 58 additions and 0 deletions

View file

@ -0,0 +1,25 @@
function leo_search()
{
var query = window._content.document.getSelection();
if(query != null)
{
var myURL = "http://dict.leo.org/?lp=ende&lang=de&searchLoc=0&cmpType=relaxed&relink=on&sectHdr=on&spellToler=std&search=" + query;
openNewTabWith(myURL, null, null, true);
}
}
/*
function hide_show_meuitem()
{
var query = window._content.document.getSelection();
if(query != null)
{
document.getElementById("leo_search").hidden = false;
}
else
{
document.getElementById("leo_search").hidden = true;
}
}
*/