miguelcobain/ember-leaflet

marker.popup doesn't see close element

Closed this issue · 1 comments

I have the following code

                <LeafletMap @lat={{40.529328}} @lng={{-112.139893}} @zoom={{13}} as |layers|>
                    <layers.image @url="/assets/images/mine.png" @bounds={{this.mapBounds}} />
                    <layers.marker @lat={{40.561220}} @lng={{-112.142008}} as |marker|>
                        <marker.popup>
                            <h3>Hotel</h3>
                        </marker.popup>
                    </layers.marker>
                </LeafletMap>

and the compiler fails with the following message.

Closing tag </layers.marker> did not match last open tag <marker.popup> (on line 1):

|
| </layers.marker>
|

I have been trying to figure out why it won't recognize it, the code is almost 1-for-1 with the examples in your documentation. But it seems to be ignoring the </marker.popup> for some reason.

Issue is related to EmblemJS, apologies.