Markus Ast

Results 221 comments of Markus Ast

``` js $('[contenteditable]').on('paste', function (e) { e.preventDefault() var text = (e.originalEvent || e).clipboardData.getData('text/plain') document.execCommand('insertText', false, text) }) ``` Works fine for me

@l2aelba Works in Safari + Opera Next, too. I think for older IEs it has to be `window.clipboardData` instead of `e.clipboardData`.

``` js $('[contenteditable]').on('paste', function (e) { e.preventDefault() var text = (window.clipboardData || (e.originalEvent || e).clipboardData).getData('text/plain') document.execCommand('insertText', false, text) }) ``` Could work, too. http://jsfiddle.net/xMZcy/ But I don't have access to...

Hi, thanks for the report! I agree that support for other carriers would be a good addition 👍

Thanks for the report. Looks like your fix from #79 doesn't work this time. #106 reports the same issue, too. I am unfortunately unable to reproduce it, but I am...

This is expected I am afraid. All stations are simply set to BLUE right now. I am aware that this might not be optimal (issue for that exists since 2019...

I like the idea 👍 I might have to combine this with a feature that disables the broadcast while no one is active on a certain frequency to save on...

Thanks for the info! Definitely good to know. I might be moving DATIS to being only configurable through Lua anyway (https://github.com/rkusa/DATIS/discussions/113). Do you see any challenges when you'd have to...

I am indeed wondering whether it should keep it for the typical DCS user, so I appreciate the feedback 👍

Sounds like a good addition to me! I think though, that the current way of setting up a station isn't well suited for this and I am afraid that this...