Skip to content
#

tags

Here are 702 public repositories matching this topic...

BjarniRunar
BjarniRunar commented Jul 21, 2019

Mailpile should automatically stop trying to re-check a mailbox/folder which has been deleted from the source/server.

This should be done in such a way that if the mailbox reappears, polling starts again. This should be relatively straightforward, mostly we need to make sure that each individual mailbox type communicates clearly that it's "gone" (not just temporarily unavailable) and the master

NickDJM
NickDJM commented Dec 13, 2019

Issue

In v7.1.0:

When you declare a custom file in bumpFiles standard-version will no longer update normal package.json, composer.json, lockfiles, etc. declared in the defaults.

This is fine (I don't think this is a bug because maybe you don't want it to bother with the defaults), but I think it should be mentioned in the documentation that when you do declare bumpFiles in your c

mykter
mykter commented Mar 31, 2018

The README and provided example has:

let suggestions = states().filter((state) => {
    return state.name.toLowerCase().slice(0, inputLength) === inputValue
  })

I think it should be something equivalent to:

const suggestions = states().filter(
  state =>
    inputLength > 0 &&
    state.name.toLowerCase().slice(0, inputLength) === inputValue
)

Otherwise the sug

stackoverfloweth
stackoverfloweth commented Jan 24, 2020

With this propadd-on-key="[13,9]" I can add tags from my autocomplete dropdown with a tab press. The behavior itself works as expected, I can arrow-down to an item or mouse hover and press tab to insert the tab. It correctly keeps the focus within the tabs-input, however the autocomplete window no long opens until you blur and re-focus manually.

Version 2.1.0

Example
[http://jsfiddle.

Improve this page

Add a description, image, and links to the tags topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the tags topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.