plugin
Here are 10,282 public repositories matching this topic...
I looked for a while now for some resources to understand more this project but I can't find any. If anyone knows about a source in English that would be great.
-
Updated
Jan 9, 2020 - Go
-
Updated
Dec 14, 2019 - Java
The forward plugin has some rather convoluted config setups. I.e. functions on Proxy that call other functions on the lower bits (Transport and Healthcheck). For some reason I can't remember HealthCheck as an interface; where in reality we only have one impl. here.
This all looks over-engineered and ready to be massively simplified - hopefully with a reduction in LOCs.
This can be added to spec/finders/active_record_spec.rb
it 'returns correct `size` for last page' do
users = User.paginate(:page => 3, :per_page => 5)
users.total_entries.should == 13
users.total_pages.should == 3
users.size.should == 3
endThe test is failing:
bundle exec rspec spec/finders/active_record_spec.rb:420
-
Updated
Mar 7, 2020 - Kotlin
-
Updated
Sep 6, 2018 - Java
Are you aware of any different behavior when a PWA (using offline-plugin) is added to the home screen using "Add to Home Screen" on Chrome/Android or Safari/iOS?
I'm having problems with the app getting stuck using the cached version when it was installed and never updating.
I even have offline-plugin responseStrategy set to network-first but it seems to always use the cached version after add
JS 配置如下:
var gitalk = new Gitalk({
clientID: '3654916*****0c0038c28',
clientSecret: 'd90d031a*****0e0fa4c7fe2fae747b96b',
repo: 'Strange-AI.github.io',
owner: 'Strange-AI',
admin: ['jinfagang', 'Strange-AI'],
id: vm.codeId,
distractionFreeMode: false
});
gitalk.render('gitalk-conta
plugins: [
createPersistedState({
storage: {
getItem: key => Cookies.get(key),
// Please see https://github.com/js-cookie/js-cookie#json, on how to handle JSON.
setItem: (key, value) =>
Cookies.set(key, value, { expires: 300000, secure: true }),
removeItem: key => Cookies.remove(key)
}
})
],
在README中加上适用场景的解释说明
-
Updated
Aug 24, 2018 - JavaScript
-
Updated
Dec 10, 2017 - JavaScript
It can be really cool to get XcodeClangFormat app for Xcode 8 via homebrew cask.
This is the documentation : https://github.com/caskroom/homebrew-cask/blob/master/doc/development/adding_a_cask.md
Trying to play the helloCharacter level, crashes the editor...
After a little bit of debugging the problem lives in this two functions, even spawning only one character, crashes the engine.
function createCharacter() {
let pos = randomPoint()
pos.Z += 100
// All UObject has static function .C({UObject}), which just return its input arg.
// But *.d.ts ha
-
Updated
Mar 10, 2020 - Java
Not sure if this is the right place to report the issue (as opposed to in caniuse-db), but I'm getting the error:
document.fonts() is not supported in Edge 79
When Edge 79 does support it: https://developer.microsoft.com/en-us/microsoft-edge/status/cssfontloadingapi/?q=edgeChromium%3AShipped%20edge%3ADeprecated%20edge%3A%27Not%20Supported%27
-
Updated
Oct 14, 2019 - JavaScript
-
Updated
Apr 22, 2018 - Python
-
Updated
Dec 21, 2019
-
Updated
May 9, 2019 - Java
-
Updated
Aug 9, 2017 - Java
Improve this page
Add a description, image, and links to the plugin topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the plugin topic, visit your repo's landing page and select "manage topics."
Hi, it would be nice that filepond could show long validation message at mobile page width.
For example in the CodePen below, if uploaded file is above 1MB - validation message doesnt fit to pond widht and filename is pushed out of pond too.
https://codepen.io/vova-tkachenko/pen/QZBobm
Probably such long messages should have 'max-width' set to width of pond fall down to the next line.