mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
Made dataviz bars wider
This commit is contained in:
parent
96e7fab55c
commit
41ed55c9b5
@ -72,7 +72,7 @@ class Utils
|
||||
|
||||
public static function requireHTTPS()
|
||||
{
|
||||
if (Request::root() === 'http://ninja.dev:8000') {
|
||||
if (Request::root() === 'http://ninja.dev' || Request::root() === 'http://ninja.dev:8000') {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -128,12 +128,12 @@
|
||||
|
||||
var arc = d3.svg.arc()
|
||||
.innerRadius(function(d) { return d.r })
|
||||
.outerRadius(function(d) { return d.r - 5 })
|
||||
.outerRadius(function(d) { return d.r - 10 })
|
||||
.startAngle(0);
|
||||
|
||||
var fullArc = d3.svg.arc()
|
||||
.innerRadius(function(d) { return d.r })
|
||||
.outerRadius(function(d) { return d.r - 5 })
|
||||
.innerRadius(function(d) { return d.r - 1 })
|
||||
.outerRadius(function(d) { return d.r - 9 })
|
||||
.startAngle(0)
|
||||
.endAngle(2 * Math.PI);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user