You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by hu...@apache.org on 2018/02/16 19:31:10 UTC

[kibble] 02/02: expand donuts to 25 objects by default

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kibble.git

commit 26222db71cec00f1df252dfd315c0a070389f8b0
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Fri Feb 16 20:30:58 2018 +0100

    expand donuts to 25 objects by default
---
 ui/js/coffee/widget_donut.coffee | 2 +-
 ui/js/kibble.v1.js               | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui/js/coffee/widget_donut.coffee b/ui/js/coffee/widget_donut.coffee
index 5561070..542e840 100644
--- a/ui/js/coffee/widget_donut.coffee
+++ b/ui/js/coffee/widget_donut.coffee
@@ -76,6 +76,6 @@ donut = (json, state) ->
         data[el.name] = el.value
     div = new HTML('div')
     state.widget.inject(div, true)
-    chartBox = new Chart(div, 'donut', data, 15)
+    chartBox = new Chart(div, 'donut', data, 25)
     
       
\ No newline at end of file
diff --git a/ui/js/kibble.v1.js b/ui/js/kibble.v1.js
index 1720360..44bc59c 100644
--- a/ui/js/kibble.v1.js
+++ b/ui/js/kibble.v1.js
@@ -5854,7 +5854,7 @@ donut = function(json, state) {
   }
   div = new HTML('div');
   state.widget.inject(div, true);
-  return chartBox = new Chart(div, 'donut', data, 15);
+  return chartBox = new Chart(div, 'donut', data, 25);
 };
 
 factors = function(json, state) {

-- 
To stop receiving notification emails like this one, please contact
humbedooh@apache.org.