Nektarios Konstantinidis

Results 11 comments of Nektarios Konstantinidis

Hi. We encountered the same situation too. Would be great to be able to set minPoints with 1 so that everything shown on the map is a cluster. The markers...

Hey guys. Thanks for this great library of Material Components. Could you please add this feature in your roadmap? I believe it is important functionality, as most have already mentioned,...

If you transfer index.html to dist/app1 folder everything should work fine. Unfortunately it is the best solution at the moment. I will keep this issue open till it is properly...

I have created an issue in angular-cli. https://github.com/angular/angular-cli/issues/7309

$(".select").val("x").trigger("change"); // Does not work.. $(".select").val(); // gets the value $(".select").val("x").trigger("change"); // does not set it.. Please help asap..

Had to fix it by myself, please support your plugin.. I'll be using it at my projects. Fix: ``` javascript $select.on("change", function(e) { var $this = $(e.target); if (!$this.val().length) return;...

It would be great if iterations were defined the following ways: ```` animations: [ ... transition('inactive => active', animate('100ms ease-in infinite')), transition('inactive => active', animate('100ms ease-in 5')), // iterates 5...

@leonardopaiva Have you managed to make an infinite animation? Could you show an example? Unfortunately I tried by looping states but that crashed the browser :(. I have also tried...