shadow should be above fill

Makes it much easier to select lines that are within areas.
This commit is contained in:
John Firebaugh
2013-02-03 08:49:43 -08:00
parent 13b0b540a7
commit 3000bc89ce

View File

@@ -3,7 +3,7 @@ iD.svg.Surface = function() {
selection.append('defs');
var layers = selection.selectAll('.layer')
.data(['shadow', 'fill', 'casing', 'stroke', 'text', 'hit', 'halo', 'label']);
.data(['fill', 'shadow', 'casing', 'stroke', 'text', 'hit', 'halo', 'label']);
layers.enter().append('g')
.attr('class', function(d) { return 'layer layer-' + d; });