Allan G

Results 14 comments of Allan G

I am currently adding ng-keydown and checking for "enter" or "space" keyCode as a solution. http://plnkr.co/edit/MABVJKLLXIQH1xmCpdg3?p=preview HTML: ``` html ``` JavaScript: ``` javascript function doSomething(event) { if(event.type === 'keydown') {...

Adding a log in panInsideBounds, not only does the translate string change by 1px back and forth, the map center changes back and forth as well: [jsfiddle](http://jsfiddle.net/8zr3d9hn/13/) ``` { center:...

I found that the following worked for my project, though I am not sure whether this would work as a general solution to the problem: ``` javascript L.Map.extend({ panInsideBounds =...

@alexkrolick Quill 2 has been released. https://slab.com/blog/announcing-quill-2-0/

@saulfrr you can add an override to package.json: ``` "overrides": { "quill-blot-formatter": { "quill": "^2.0.0" } }, ```

I spent some time debugging this. Here are my observations: When you click on a `mat-sort-header` that is not currently active, eventually it will call `_setAnimationTransitionState({fromState: '', toState: 'active'})` on...

@Anderman that is very similar to what I have been using for a few months: ```typescript import { Component, AfterViewInit, OnDestroy } from '@angular/core'; import { Sort, MatSort, MatSortHeader }...

This plugin does just that: https://www.npmjs.com/package/quill-magic-url

@luin the playground example is helpful, but it would be really nice to have examples in typescript as well. Also, Quill v2 is written in typescript, but you are not...