Andrew Volozhanin
Andrew Volozhanin
+1. I'm looking for a flexible alternative to assets pipeline and this gem seems very promising. But I'm a bit hesitant to use it, because I don't want to stuck...
@asiniy you could also put nginx in front of elixir app and cache exfile responses with it.
@felix91gr Thank you, it looks good to me. I think it's worth mentioning `Model#model_name#i18n_key` method, as in `Cms::Page.model_name.i18n_key`. It's the one that I18n library uses in yaml file.
Don't worry about it, that's my way of writing a nested call to instance methods. :) Actually, `Model.model_name` is not even an instance method! Anyway, it supposed to represent `Cms::Page.model_name.i18n_key`...
@felix91gr Hello again, could you rewrite the README to mention customization of tab labels via `admin.globalize_field.tab_label`, instead of monkey patching? It should make it more straightforward to customize the labels.
Using `return false` and/or `stopPropagation` on click events doesn't play nice with other libraries
I vote +1 for using just `preventDefault` instead of `return false`, because now I can't trigger click handlers on the `document`. ## My use case: I'm opening popup and I...
I was able to start ruby-lsp with the correct ruby version autoselected by chruby with a small custom shim: Put this somewhere in your path and `chmod +x `: ```...