Marcin Radoszewski

Results 37 comments of Marcin Radoszewski

Thanks @akatechis! I'll take a look at this PR during the week or even weekend (depends on workload)

@j0hnsmith the one in GH is rudimentary and lack a lot of features. Will probably get better in the future, but for now it's not a match for plugins like...

@imp I'm interested in having this feature as well. Are you working on it or found any other solution?

Hi! I've stumblied on this issue today. When is it going to be merged?

> Mostly it's calling fomantic functions using jquery selector to enrich basic components tbh. Nothing fancy, but random usages still grow a fair amount across a codebase That really could...

For now I kinda hacked around with custom events. I just register regular JS shortcut with Mousetrap which sends my action event: ```javascript Mousetrap.bind('ctrl+p', function(e) { var event = new...

Actually I've made a little plugin for that: ```kotlin import kweb.WebBrowser import kweb.plugins.KwebPlugin import org.jsoup.nodes.Document class MousetrapPlugin : KwebPlugin() { override fun decorate(doc: Document) { doc.head().appendElement("script") .attr("src", "//cdnjs.cloudflare.com/ajax/libs/mousetrap/1.4.6/mousetrap.min.js") } }...

@sanity I guess it depends on what the user wants to achieve. In my case that would totally work, but I can imagine that someone would want to cancel an...

I've to little experience with frontend development to tell. It's your call :)

> Caused by: java.lang.InstantiationException: Type `kotlin.internal.jdk8.JDK8PlatformImplementations` can not be instantiated reflectively as it does not have a no-parameter constructor or the no-parameter constructor has not been added explicitly to the...