Phlegx Systems

Results 113 comments of Phlegx Systems

@JakubSzajna but ruby-mqtt has this definition: [mqtt.rb#L23](https://github.com/njh/ruby-mqtt/blob/main/lib/mqtt.rb#L23) ```ruby module MQTT ... # Super-class for other MQTT related exceptions class Exception < ::Exception end ... end ``` Used here: [mqtt/client.rb#L476](https://github.com/njh/ruby-mqtt/blob/main/lib/mqtt/client.rb#L476) ```ruby...

@JakubSzajna can you write a PR please?

Found similar PR #112 related to StandardError.

Cool! Exactly my case. Thx!

I have the same problem, but `@contextmenu.prevent` don't work. It prevents also `v-touch:touchhold`. ```vue ``` **One working solution for mobile ad desktop browser** ```vue ``` with event handler: ```js export...

After upgrade **Vue** 3.3.13 to 3.4.15 using **bootstrap-vue-next** 0.14.10: `Uncaught (in promise) Maximum recursive updates exceeded. This means you have a reactive effect that is mutating its own dependencies and...

The problem is the `eventHub` in the code. This emits global events to all subscriber.

E.g. ``` eventHub.$on('$InfiniteLoading:loaded', () => { ... } ``` should be: ``` eventHub.$on('$InfiniteLoading:loaded', (ev) => { if (!ev || ev.target !== this) return; ... }); ``` Same changes for: ```...

" It looks like the context of the channels {} block seems to be changing and can not handle multiple subscription within the same (parent) component." Can confirm! If the...

The problem is, that actioncable-vue uses `context._uid` in some parts of the code (e.g. [src/cable.js#L231](https://github.com/mclintprojects/actioncable-vue/blob/master/src/cable.js#L231)). Vue 3 don't uses `this._uid` anymore. For the options API it can be retrieved with...