Update prettier version

This commit is contained in:
Gautier P 2020-12-05 11:50:30 +01:00
parent c49b821db7
commit 25429b3c24
42 changed files with 2480 additions and 2490 deletions

View file

@ -1,10 +1,10 @@
BR.Itinerary = L.Class.extend({
initialize: function() {
initialize: function () {
this._content = document.getElementById('itinerary');
this.update();
},
update: function(polyline, segments) {
update: function (polyline, segments) {
var i,
j,
iter,
@ -20,5 +20,5 @@ BR.Itinerary = L.Class.extend({
html += '</pre>';
this._content.innerHTML = html;
}
},
});