summary refs log tree commit diff stats
path: root/theme/js/round_bubbles.js
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2008-12-12 17:38:01 -0500
committerStarla Insigna <hatkirby@fourisland.com>2008-12-12 17:38:01 -0500
commitf1577ed1afb1aa65041ba5b6cdd812e2c6085d91 (patch)
tree1aa4d4c93a4f1d27daa12ad951d9f76069f8140e /theme/js/round_bubbles.js
parentacd2740ccbbb358e866a8bb3ac64c0de32e554f9 (diff)
downloadfourisland-f1577ed1afb1aa65041ba5b6cdd812e2c6085d91.tar.gz
fourisland-f1577ed1afb1aa65041ba5b6cdd812e2c6085d91.tar.bz2
fourisland-f1577ed1afb1aa65041ba5b6cdd812e2c6085d91.zip
Replaced JS bubbles
Now, instead of creating bubbles using JavaScript, they are created
using the CSS3 style "border-radius" commands.
Diffstat (limited to 'theme/js/round_bubbles.js')
-rwxr-xr-xtheme/js/round_bubbles.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/theme/js/round_bubbles.js b/theme/js/round_bubbles.js deleted file mode 100755 index 8423b99..0000000 --- a/theme/js/round_bubbles.js +++ /dev/null
@@ -1,13 +0,0 @@
1window.onload = function() {
2 settings = {
3 tl: { radius: 10 },
4 tr: { radius: 10 },
5 bl: { radius: 10 },
6 br: { radius: 10 },
7 antiAlias: true,
8 autoPad: true
9 }
10 var myBoxObject = new curvyCorners(settings, "rounded");
11 myBoxObject.applyCornersToAll();
12 }
13