Pedro Kostelec
Pedro Kostelec
@edance, could you provide an example of how you worked around the issue?
I was able to get it working by overriding `_createPopupContent`: ``` javascript _createPopupContent: function() { if(!get(this, 'popupViewClass')) { this._popup.setContent(get(this, 'popupContent')); return; } if(this._popupView) { this._destroyPopupContent(); } var viewClass = get(this,...
Thank you @miguelcobain for the reply! Am I right that I only need `_updateLayerOnIconChange` if I use the `DraggableMixin` mixin? I don't need markes to be draggable. Second, the icon...
I just upgraded to the latest commit on the master branch (before, I was specifying ember-leaflet#0.6.0), but it still doesn't work.
`_updateLayerOnIconChange` doesn't make it work. `isHovered` is changed in the "klub controller" from which the markers take the location. You can see it change in the list on the right....
Wow, thanks so much! There's no way I would have solved this without your knowledge. There's one thing that bothers me still. The `isHovered` property seems to be local to...
> Why don't you user your mouseover and mouseout handler on your marker to set isHovered on your marker? I don't see the need to delegate that to an action...
@clawoflight Could you explain the use case for smaller-than-hour tasks? I think allowing too granular selection of duration could potentially lead users to try to micro-manage the tasks too much....
@clawoflight https://github.com/pedrokost/STProjectPlanner/commit/56d03b1729abd2debc621df55d62a149664d159e adds the possibility to use minutes as the smallest units. The month key is now `M` and the minute key `m`. Also some of the previous commits include...
Hi @clawoflight I have thought about this feature previously, but I haven't decided whether it is worth implementing yet. In the case it becomes worthwhile to add it, what would...