Jakub T. Jankiewicz

Results 1032 comments of Jakub T. Jankiewicz

Maybe you can give the domain it's usualy in different place then the server. It would be great if domain state the same, I think that lot of projects use...

Sorry, I don't have time, I have few open source projects I'm maintaining and I'm working on those when I have time. No more time for new projects.

There is issue again http://npm.packagequality.com/shield/jquery.terminal.svg give `{"error":"database not available"}`

Can you show example code that throws this error?

The problem is that `term::flush()` call this code at the end: ```javascript if (enabled && !is_mobile) { // Firefox won't reflow the cursor automatically, so // hide it briefly then...

Not sure what this code is for, but I think that I can just skip that code on update.

The abort signal should be exposed with an API: ```javascript terminal::signal() ``` So the user can use it with `fetch`: ```javascript $('body').terminal(async function(command) { const signal = this.signal(); const res...

ref: [AbortSignal::timeout()](https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/timeout_static)

`term::read()` also need a signal.

The new API: * `terminal::timeout()` * `terminal::signal()` both return signals that can be aborted with CTRL+D in addition the timeout aborts as name suggest after a timeout. There is also...