From 3cc68f72ba3adca6970b073a80258d761ec884a6 Mon Sep 17 00:00:00 2001 From: pete_morgan Date: Sat, 19 Aug 2006 01:38:46 +0000 Subject: [PATCH] avoid dupes and added remote paths --- .../language-function-popup-init.xml | 23 ++++++++++++++----- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/docs/en/designers/language-custom-functions/language-function-popup-init.xml b/docs/en/designers/language-custom-functions/language-function-popup-init.xml index 582648a5..b2dbce9c 100644 --- a/docs/en/designers/language-custom-functions/language-function-popup-init.xml +++ b/docs/en/designers/language-custom-functions/language-function-popup-init.xml @@ -7,13 +7,13 @@ is an integration of overLib, a library used for popup windows. These are used for context sensitive information, such as - help windows or tooltips. {popup_init} must be called once at the - top of any page you plan on using the - {popup} function. + help windows or tooltips. {popup_init} must be called only once, preferably within the <head> tag + within any page you plan on using the + {popup} function. The path is relative to the executing script or a fully qualified domain path (ie not the relative to the template). overLib - was written by Erik Bosrup, and the homepage/download is located at + is written and maintained by Erik Bosrup, and the homepage/download is located at &url.overLib;. @@ -24,10 +24,21 @@ {* popup_init must be called once at the top of the page *} {popup_init src='javascripts/overlib/overlib.js'} + +{* fully qualified url example *} +{popup_init src='http://myserver.org/my_js_libs/overlib/overlib.js'} + + +// the first example will output + + + ]]> - + + + \ No newline at end of file +-->