summary refs log tree commit diff stats
path: root/theme/js/round_bubbles.js
diff options
context:
space:
mode:
Diffstat (limited to 'theme/js/round_bubbles.js')
-rw-r--r--theme/js/round_bubbles.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/theme/js/round_bubbles.js b/theme/js/round_bubbles.js new file mode 100644 index 0000000..8423b99 --- /dev/null +++ b/theme/js/round_bubbles.js
@@ -0,0 +1,13 @@
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