mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
Working on TravisCI
This commit is contained in:
parent
c69b9d3be0
commit
47b7a00f50
@ -61,6 +61,10 @@ before_script:
|
||||
script:
|
||||
- php ./vendor/codeception/codeception/codecept run --html --debug
|
||||
|
||||
after_script:
|
||||
- cat storage/logs/laravel.log
|
||||
|
||||
|
||||
notifications:
|
||||
email:
|
||||
on_success: never
|
||||
|
@ -126,6 +126,7 @@
|
||||
//console.log(JSON.stringify(invoices));
|
||||
//console.log(JSON.stringify(products));
|
||||
|
||||
/*
|
||||
var arc = d3.svg.arc()
|
||||
.innerRadius(function(d) { return d.r - 2 })
|
||||
.outerRadius(function(d) { return d.r - 8 })
|
||||
@ -136,7 +137,18 @@
|
||||
.outerRadius(function(d) { return d.r - 7 })
|
||||
.startAngle(0)
|
||||
.endAngle(2 * Math.PI);
|
||||
*/
|
||||
|
||||
var arc = d3.svg.arc()
|
||||
.innerRadius(function(d) { return d.r })
|
||||
.outerRadius(function(d) { return d.r - 6 })
|
||||
.startAngle(0);
|
||||
|
||||
var fullArc = d3.svg.arc()
|
||||
.innerRadius(function(d) { return d.r })
|
||||
.outerRadius(function(d) { return d.r - 6 })
|
||||
.startAngle(0)
|
||||
.endAngle(2 * Math.PI);
|
||||
|
||||
var diameter = 800,
|
||||
format = d3.format(",d");
|
||||
@ -245,8 +257,7 @@
|
||||
.transition()
|
||||
.duration(1000)
|
||||
.style("fill", function(d, i) {
|
||||
//return d.displayAge == -1 ? 'grey' : color(d.displayAge);
|
||||
return d.displayAge == -1 ? 'grey' : '#FF0000';
|
||||
return d.displayAge == -1 ? 'white' : 'red';
|
||||
});
|
||||
|
||||
selection.exit().remove();
|
||||
|
Loading…
x
Reference in New Issue
Block a user