integration/js/main.js
changeset 1 43d9dff6758a
child 2 6e47ed0c413c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/integration/js/main.js	Wed Oct 03 17:58:05 2012 +0200
@@ -0,0 +1,6 @@
+$(function(){
+	var sum=0;
+	$('.cluster li').each( function(){ sum += $(this).width(); });
+	$('.cluster').width( sum );
+
+});