cms/app-client/app/components/discourses-component.js
changeset 207 204f25632006
parent 206 e038d5782d06
child 216 c174124d1849
--- a/cms/app-client/app/components/discourses-component.js	Fri Jun 24 15:26:26 2016 +0200
+++ b/cms/app-client/app/components/discourses-component.js	Fri Jun 24 17:01:39 2016 +0200
@@ -18,7 +18,7 @@
         d3.json(baseURL + "/discourses", function(discourses) {
 
             var width = self.$().parent().width();
-            var height = self.$().parent().height();
+            var height = self.$().parent().height() - self.$().siblings().height();
 
             var bubble = d3.layout.pack()
                 .sort(function comparator(a, b) { return a.value + b.value; })