From 4738428c2c205f42200386ae09b44b9ec07b9144 Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Sat, 27 Jul 2013 14:33:25 -0700 Subject: Move subsonic-android to root --- .../src/main/webapp/script/tip_balloon.js | 221 --------------------- 1 file changed, 221 deletions(-) delete mode 100644 subsonic-main/src/main/webapp/script/tip_balloon.js (limited to 'subsonic-main/src/main/webapp/script/tip_balloon.js') diff --git a/subsonic-main/src/main/webapp/script/tip_balloon.js b/subsonic-main/src/main/webapp/script/tip_balloon.js deleted file mode 100644 index dc9d2e44..00000000 --- a/subsonic-main/src/main/webapp/script/tip_balloon.js +++ /dev/null @@ -1,221 +0,0 @@ -/* -tip_balloon.js v. 1.81 - -The latest version is available at -http://www.walterzorn.com -or http://www.devira.com -or http://www.walterzorn.de - -Initial author: Walter Zorn -Last modified: 2.2.2009 - -Extension for the tooltip library wz_tooltip.js. -Implements balloon tooltips. -*/ - -// Make sure that the core file wz_tooltip.js is included first -if(typeof config == "undefined") - alert("Error:\nThe core tooltip script file 'wz_tooltip.js' must be included first, before the plugin files!"); - -// Here we define new global configuration variable(s) (as members of the -// predefined "config." class). -// From each of these config variables, wz_tooltip.js will automatically derive -// a command which can be passed to Tip() or TagToTip() in order to customize -// tooltips individually. These command names are just the config variable -// name(s) translated to uppercase, -// e.g. from config. Balloon a command BALLOON will automatically be -// created. - -//=================== GLOBAL TOOLTIP CONFIGURATION =========================// -config. Balloon = false // true or false - set to true if you want this to be the default behaviour -config. BalloonImgPath = "script/tip_balloon/" // Path to images (border, corners, stem), in quotes. Path must be relative to your HTML file. -// Sizes of balloon images -config. BalloonEdgeSize = 6 // Integer - sidelength of quadratic corner images -config. BalloonStemWidth = 15 // Integer -config. BalloonStemHeight = 19 // Integer -config. BalloonStemOffset = -7 // Integer - horizontal offset of left stem edge from mouse (recommended: -stemwidth/2 to center the stem above the mouse) -config. BalloonImgExt = "gif";// File name extension of default balloon images, e.g. "gif" or "png" -//======= END OF TOOLTIP CONFIG, DO NOT CHANGE ANYTHING BELOW ==============// - - -// Create a new tt_Extension object (make sure that the name of that object, -// here balloon, is unique amongst the extensions available for wz_tooltips.js): -var balloon = new tt_Extension(); - -// Implement extension eventhandlers on which our extension should react - -balloon.OnLoadConfig = function() -{ - if(tt_aV[BALLOON]) - { - // Turn off native style properties which are not appropriate - balloon.padding = Math.max(tt_aV[PADDING] - tt_aV[BALLOONEDGESIZE], 0); - balloon.width = tt_aV[WIDTH]; - //if(tt_bBoxOld) - // balloon.width += (balloon.padding << 1); - tt_aV[BORDERWIDTH] = 0; - tt_aV[WIDTH] = 0; - tt_aV[PADDING] = 0; - tt_aV[BGCOLOR] = ""; - tt_aV[BGIMG] = ""; - tt_aV[SHADOW] = false; - // Append slash to img path if missing - if(tt_aV[BALLOONIMGPATH].charAt(tt_aV[BALLOONIMGPATH].length - 1) != '/') - tt_aV[BALLOONIMGPATH] += "/"; - return true; - } - return false; -}; -balloon.OnCreateContentString = function() -{ - if(!tt_aV[BALLOON]) - return false; - - var aImg, sImgZ, sCssCrn, sVaT, sVaB, sCss0; - - // Cache balloon images in advance: - // Either use the pre-cached default images... - if(tt_aV[BALLOONIMGPATH] == config.BalloonImgPath) - aImg = balloon.aDefImg; - // ...or load images from different directory - else - aImg = Balloon_CacheImgs(tt_aV[BALLOONIMGPATH], tt_aV[BALLOONIMGEXT]); - sCss0 = 'padding:0;margin:0;border:0;line-height:0;overflow:hidden;'; - sCssCrn = ' style="position:relative;width:' + tt_aV[BALLOONEDGESIZE] + 'px;' + sCss0 + 'overflow:hidden;'; - sVaT = 'vertical-align:top;" valign="top"'; - sVaB = 'vertical-align:bottom;" valign="bottom"'; - sImgZ = '" style="' + sCss0 + '" />'; - - tt_sContent = '' - // Left-top corner - + '' - + '' - + '' - + '
' - + '
' - + '' - // Right-top corner - + '' - + '' - // Redundant image for bugous old Geckos which won't auto-expand TD height to 100% - + '' + tt_sContent + '' - // Right border - + '
' - // Right-bottom corner - + '' - + ' -balloon.width + iAdd) - bdy.style.width = (-balloon.width + iAdd) + "px"; - } -} -// This mechanism pre-caches the default images specified by -// congif.BalloonImgPath, so, whenever a balloon tip using these default images -// is created, no further server connection is necessary. -function Balloon_PreCacheDefImgs() -{ - // Append slash to img path if missing - if(config.BalloonImgPath.charAt(config.BalloonImgPath.length - 1) != '/') - config.BalloonImgPath += "/"; - // Preload default images into array - balloon.aDefImg = Balloon_CacheImgs(config.BalloonImgPath, config.BalloonImgExt); -} -Balloon_PreCacheDefImgs(); -- cgit v1.2.3
' - // Image redundancy for bugous old Geckos that won't auto-expand TD height to 100% - + '' - + '
' - + '' - + '