Isaac Mann
Isaac Mann
What does your code look like? On Fri, Jun 8, 2018, 3:11 AM SidduLakkarse wrote: > Hi Isaac Mann, > Thank's for your ngx-contextmenu . > I am trying to...
You're right. I'm not really sure the best way to export both commonjs (for webpack et al.) and es2015 (for rollup). If you could point me towards another library that...
Yes, I think that broke in the migration. I need to figure out how to fix that.
I'm not sure what jQuery fullCalendar does in the DOM. If the calendar is not actually rendered inside that ``, then the context menu event won't be picked up. Check...
https://stackblitz.com/edit/ng-fullcalendar-demo-k57fif?file=app%2Fapp.component.html Here's a sample with the context menu working with ng-fullcalendar. The context menu needs to be styled, but it is functioning correctly.
No, you can't make a `TemplateRef` directly in the typescript code. The closest you can get is something like this: ```html div on which I want to display my dynamic...
You’re right. It would be a nice feature to add an `active-path` class to an item that has an open sub menu. I’d accept a PR for that feature. On...
First, thanks for contributing! So basically, the context menu shows up when you long press? Is there not a native event for a long press? I'd like to avoid hard...
Thanks for explaining the long press implementation. What's the reason for falling back to `pageX`/`pageY`? Do mobile browsers not use `clientX`/`clientY`?
I'm learning this stuff now, but it looks like the right thing to do is to reference the [touches](https://developer.mozilla.org/en-US/docs/Web/Events/touchstart) property of the `TouchEvent` and then reference `clientX`/`clientY` on that. What...