mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 01:02:58 +00:00
Append capture date instead of inserting it
Messing with DOM node order seems to break the Mapillary viewer's ability to correctly set the user and photo links
This commit is contained in:
@@ -506,10 +506,10 @@ export default {
|
||||
var capturedAt = attribution.selectAll('.captured-at');
|
||||
if (capturedAt.empty()) {
|
||||
attribution
|
||||
.insert('span', 'a')
|
||||
.append('span')
|
||||
.text('|');
|
||||
capturedAt = attribution
|
||||
.insert('span', 'span')
|
||||
.append('span')
|
||||
.attr('class', 'captured-at');
|
||||
}
|
||||
capturedAt
|
||||
|
||||
Reference in New Issue
Block a user