Eric Miller

Results 41 comments of Eric Miller

@gregwhitworth It's a good note and made me nervous, but rinick's workaround still fixes the problem, so long as my flex sized container is `position: relative` -- this follows the...

+1 I read this in the docs: > Sunday or Monday, depending on your settings ...And I thought it was a periodic-notes plugin or calendar-plugin setting, but I think this...

I learned this: ``` flattenedData["handedness"] // undefined flattenedData["handedness[]"] // returns expected value ``` I thought the `[]` was just a helpful chrome hint. I didn't realize it's part of the...

Since the input writer and the key extractor are both keyed by `type`, which does not include the `multiple` distinction on a select, I see two possible solutions: 1. Change...

The solution that seems easiest is here: ``` Syphon.deserialize = function(view, data, options){ // Build the configuration var config = buildConfig(options); // Get all of the elements to process var...

The other way is to comment out line 273 of `lib/amd/backbone.syphon.js`: ``` if (_.isArray(value)){ //keyName += "[]"; hash[keyName] = value; } else if (_.isObject(value)){ hash = flattenData(config, value, keyName); }...

It's been a long time since I thought about it. I think this applies to any form that the user might fill in partially, depending on needs. So like a...

Similar issue here, also not working in a subdir. Files being renamed and map being created in `grunt.filerev.summary`, but usemin does not replace the references to the files. References are...

We hit a failure because we commented out one of the script tags in a build block. Never expected it to still parse and include the script. This caused a...

Example, before: ![image](https://user-images.githubusercontent.com/548809/192119288-dd6ab737-a3d3-46b8-85c7-76f0ea1d7e94.png) Mockup, after (changed UA): ![image](https://user-images.githubusercontent.com/548809/192119265-646aa3f7-90ac-4358-8a4f-8b34be96a598.png)