Zach Leatherman

Results 904 comments of Zach Leatherman

![number-safari](https://cloud.githubusercontent.com/assets/39355/16666670/60542358-444e-11e6-83a0-c2216a5fdc1d.gif) Additional Safari 6 test data (note that this input is only 16 digits long and is still rounded)

Worse, this doesn’t seem to be feature testable, given the following: ### Safari 6 and Firefox 47 1. `el.value = "12341234123412341234"`; 2. Field changes to render `12341234123412300000` 3. `el.value` returns...

More test data here: 1. Rendered value is matches? 2. `value` matches? 3. `valueAsNumber` matches? If does not match and rendered value also does not match, are they the same?...

@domenic Ah yeah, sorry. Will correct it to say “mismatched” instead of “incorrect”

We actually only use modules as part of the build. I _just_ added a form of UMD as a stop-gap for now in #124

I think we left this open due to a question with what happens in browsers that support stopImmediatePropagation. I think we settled on fallback to native `stopImmediatePropagation`, then `stopPropagation`, then...

Hm, @jaichandra sorry about the delayed response. If you have an app that includes jQuery, use the jQuery compatible version of tablesaw: https://github.com/filamentgroup/tablesaw#user-content-the-full-tablesaw `` instead of `` I’m going to...

You _can_ DIY this with something like: ```js const { pairedShortcode } = require("@11ty/eleventy-plugin-syntaxhighlight"); module.exports = function(eleventyConfig) { eleventyConfig.addFilter("highlight", function(content, language) { return pairedShortcode(content, language); }); }; ```

If you want to use async you’ll need to do it inside of a shortcode or filter Async docs here: * https://www.11ty.dev/docs/shortcodes/ * https://www.11ty.dev/docs/languages/nunjucks/#asynchronous-nunjucks-filters * https://www.11ty.dev/docs/languages/javascript/ Liquid might support async...

See also https://github.com/11ty/eleventy/issues/614