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