Lucas Mazza

Results 29 comments of Lucas Mazza

Hey @gottfrois given your steps, sounds like the re-stored response is keeping an outdated `Date` header, and so the cache is re-validated when it should it. Does your server returns...

I've managed to import and use astro with phoenix + webpack with the following: * Imported astro using `~@magnetis/astro` * Configured the `svg-url-loader` to inline the SVG icons ```diff diff...

@beerlington we have a schema with the following relationships: ```elixir defmodule MyApp.Client do use Ecto.Schema import Ecto.Changeset schema "clients" do has_many :addresses, MyApp.Address embeds_one :document, MyApp.Document end end ``` Our...

Hey @tricknotes, I'm using this gem with Sprockets and based on how Babel 6 does not contains any transformations by default I'm wondering if this gem will bundle any preset...

I wonder if we can achieve something like this without adding a new data attribute - maybe cases where `data: { disable: true }` is used we could fallback to...

Besides the `data-*` semantics discussion, I opened #347 based on the `data-disable` proposal. Feel free to review it :smile:

@charlynet7 that's the RTF format of the code you copied - if you paste it somewhere that supports RTF (instead of a plain text editor or something like that) it...

I haven't replicated this issue so far, and I think it might be something very Windows specific. I don't have the right environment to test this out, so it would...

☝️ ping @rafaelfranca

Newlines in confirmation dialogs will work as expected with jquery-ujs, just be sure to produce the right HTML with proper `\n` terminators in the `data-confirm` attribute. If you write your...