Kyle Hotchkiss

Results 9 comments of Kyle Hotchkiss

+1, it would help me get coding more quickly

Options: ``` callbacks: { beforeOpen: function() { jQuery('body').css('overflow', 'hidden'); }, beforeClose: function() { jQuery('body').css('overflow', 'auto'); } } ```

I was experiencing a similar need with grabbing global things like menus, SEO fields, redirects, etc without having to add each one to each `wp-templates/` file: https://github.com/wpengine/faustjs/discussions/1498 I posted a...

I use grunt-webfont for icon fonts, and they're pretty manageable size-wise in base64. Hey, anything to save a http req or 2 amirite

I am getting the error on Ventura stable: ![Screenshot 2022-11-09 at 3 44 16 PM](https://user-images.githubusercontent.com/108172/200965817-4caceea2-3a71-4cd6-81d3-0040ea6af48c.png) It spooked me as I really didn't want a random kernel extension being installed in...

+1 on the environment variable to opt out of splitting. I'm just trying to build a JS bundle for a Wordpress site, while leaving my CRA bundle in a CDN....

@Ross-s can you please release this change in an updated NPM package? 2.0.0 on NPM still refers to the .entries() syntax (https://www.npmjs.com/package/@builder.io/personalization-utils?activeTab=code)

I'm seeing similar issues in other 14.2.* releases, where the error causing the failures is `Missing state cookie from login request` on `/api/auth/callback`. Interestingly, only on vercel and not on...

My fix for this is to add this to package.json for whatever project is using utm-params: ```"postinstall": "sed -i '' '7s/.*/var type = require(\"component-type\");/' node_modules/component-querystring/index.js"```