aboutsummaryrefslogtreecommitdiffstats
path: root/src/extras/sos-html-logs/share/html/overlib/overlibCompat.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/extras/sos-html-logs/share/html/overlib/overlibCompat.js')
-rw-r--r--src/extras/sos-html-logs/share/html/overlib/overlibCompat.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/extras/sos-html-logs/share/html/overlib/overlibCompat.js b/src/extras/sos-html-logs/share/html/overlib/overlibCompat.js
deleted file mode 100644
index f8fb88d4..00000000
--- a/src/extras/sos-html-logs/share/html/overlib/overlibCompat.js
+++ /dev/null
@@ -1,30 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////////
-// OVERLIB 2 COMPATABILITY FUNCTIONS
-// Include this if you are upgrading from overlib v2.x. Otherwise, forget it.
-////////////////////////////////////////////////////////////////////////////////////
-// Converts old 0=left, 1=right and 2=center into constants.
-function vpos_convert(d){if(d==0){d=LEFT;}else{if(d==1){d=RIGHT;}else{d=CENTER;}}return d;}
-// Simple popup
-function dts(d,text){o3_hpos=vpos_convert(d);overlib(text,o3_hpos,CAPTION,"");}
-// Caption popup
-function dtc(d,text,title){o3_hpos=vpos_convert(d);overlib(text,CAPTION,title,o3_hpos);}
-// Sticky
-function stc(d,text,title){o3_hpos=vpos_convert(d);overlib(text,CAPTION,title,o3_hpos,STICKY);}
-// Simple popup right
-function drs(text){dts(1,text);}
-// Caption popup right
-function drc(text,title){dtc(1,text,title);}
-// Sticky caption right
-function src(text,title){stc(1,text,title);}
-// Simple popup left
-function dls(text){dts(0,text);}
-// Caption popup left
-function dlc(text,title){dtc(0,text,title);}
-// Sticky caption left
-function slc(text,title){stc(0,text,title);}
-// Simple popup center
-function dcs(text){dts(2,text);}
-// Caption popup center
-function dcc(text,title){dtc(2,text,title);}
-// Sticky caption center
-function scc(text,title){stc(2,text,title);}