2004-04-13 08:46:28 +00:00
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision$ -->
2004-05-29 21:56:21 +00:00
<sect1 id= "language.function.popup.init" >
2005-05-25 19:13:20 +00:00
<title > {popup_init}</title>
2004-05-29 21:56:21 +00:00
<para >
2005-05-25 19:13:20 +00:00
<link linkend= "language.function.popup" > {popup}</link>
is an integration of
<ulink url= "&url.overLib;" > overLib</ulink> , a library used for popup
2004-05-29 21:56:21 +00:00
windows. These are used for context sensitive information, such as
2006-08-19 01:38:46 +00:00
help windows or tooltips. {popup_init} must be called <emphasis > only once</emphasis> , preferably within the < head> tag
within any page you plan on using the
<link linkend= "language.function.popup" > {popup}</link> function. The path is relative to the executing script or a fully qualified domain path (ie not the relative to the template).
2005-09-13 19:03:11 +00:00
</para>
<para >
2005-05-25 19:13:20 +00:00
<ulink url= "&url.overLib;" > overLib</ulink>
2006-08-19 01:38:46 +00:00
is written and maintained by Erik Bosrup, and the homepage/download is located at
2005-05-25 19:13:20 +00:00
<ulink url= "&url.overLib;" > &url.overLib; </ulink> .
2004-05-29 21:56:21 +00:00
</para>
2005-09-13 19:03:11 +00:00
2004-05-29 21:56:21 +00:00
<example >
2005-09-13 19:03:11 +00:00
<title > {popup_init}</title>
2004-05-29 21:56:21 +00:00
<programlisting >
< ![CDATA[
2005-05-25 19:13:20 +00:00
<head >
2004-04-13 08:46:28 +00:00
{* popup_init must be called once at the top of the page *}
2006-03-13 23:13:38 +00:00
{popup_init src='javascripts/overlib/overlib.js'}
2006-08-19 01:38:46 +00:00
{* fully qualified url example *}
{popup_init src='http://myserver.org/my_js_libs/overlib/overlib.js'}
</head>
// the first example will output
<head >
<div id= "overDiv" style= "position:absolute; visibility:hidden; z-index:1000;" > </div>
<script type= "text/javascript" language= "JavaScript" src= "javascripts/overlib/overlib.js" > </script>
2005-05-25 19:13:20 +00:00
</head>
2004-05-29 21:56:21 +00:00
]]>
2006-08-19 01:38:46 +00:00
</programlisting>
2004-05-29 21:56:21 +00:00
</example>
2006-08-19 01:38:46 +00:00
2004-04-13 08:46:28 +00:00
</sect1>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
2006-08-19 01:38:46 +00:00
-->