source: trunk/src/ajax/javascripts/search.js

Last change on this file was 328, checked in by lgiessmann, 14 years ago

fixed ticket #75 --> changed license terms from LGPL to LLGPL in the trunk tree

File size: 860 bytes
Line 
1//+-----------------------------------------------------------------------------
2//+  Isidorus
3//+  (c) 2008-2010 Marc Kuester, Christoph Ludwig, Lukas Georgieff
4//+
5//+  Isidorus is freely distributable under the LLGPL license.
6//+  This ajax module uses the frameworks PrototypeJs and Scriptaculous, both
7//+  are distributed under the MIT license.
8//+  You can find a detailed description in trunk/docs/LLGPL-LICENSE.txt, and
9//+  trunk/docs/LGPL-LICENSE.txt in
10//+  trunk/src/ajax/javascripts/external/MIT-LICENSE.txt.
11//+-----------------------------------------------------------------------------
12
13function makeSearch(psi)
14{
15    var content = new Element("div", {"class" : CLASSES.content()});
16    var header = new Element("h1").update("Search a Topic");
17    content.insert({"bottom" : header});
18    $(CLASSES.subPage()).insert({"bottom" : content});
19}
Note: See TracBrowser for help on using the repository browser.