Maros Hluska
Maros Hluska
I recently updated grunt-requirejs via NPM and my compiled JavaScript no longer runs. The main file loads but the callback passed to `define` is not executed. However, everything works fine...
The readme says: > As mentioned above you need to add the `{{head-layout}}` component once and only once in an application wide template But I'm finding that I need to...
Before the render finishes, during the afterModel hook, my DOM looks like this: ```html <!--%+b:10%-->My Super Project Title<!--%-b:10%--> ``` Which is causing the title of the tab to momentarily be...
I was curious for the rationale here. Ideally I would like to have default meta tags that exist before React is loaded for SEO reasons. But this library forces me...
It would be useful if there was an option to use the disabled attribute instead of a class. This is handy when the existing css in the codebase relies on...
It would be interesting if the regex for a mention did a lookaround for the word "twitter" or "instagram" to detect the mention automatically. For example, a chunk of text...
It would be useful if there was an option to make the auto clear duration dynamic based on length of the notification message.
Is it possible to switch the upstream proxy host without restarting the server? I'm currently using the `anonymizeProxy` helper like so: ``` const proxyChain = require('proxy-chain'); const user = '...';...
Upon changing files, I get one live reload which results in a bunch of `net::ERR_CONNECTION_REFUSED` and `net::ERR_CONNECTION_RESET` in the console. Subsequent file edits don't trigger a live reload. Using `apply_js_live:...
I have a controller with the following code: ```rb render json: MenuSerializer.new(menus, include: %i[items.sellable.photos]) ``` The serializers look like this: ```rb class MenuSerializer < ApplicationSerializer has_many :items end class ItemSerializer...