Benjamin Gandhi-Shepard

Results 11 comments of Benjamin Gandhi-Shepard

Yeah, I'm getting this same issue too. If you click on the pink bug icon in the bottom right of your screen shot, you can click to "rebuild" the package....

So this is the error I see in the Inspector: /Applications/Atom.app/Contents/Resources/app.asar/src/task.js:52 Module version mismatch. Expected 49, got 46. Error: Module version mismatch. Expected 49, got 46. I'm guessing that this...

That worked! @micage @sfauvart Thanks dewds! ![200](https://cloud.githubusercontent.com/assets/8546059/20524710/50a7bac4-b081-11e6-9bde-c9d2cb121c2c.gif)

The correct JS attribute to use is `htmlFor`. To correct the snippet above, write this: ```js h('label', {htmlFor: "someID"}, text) ``` Read more: https://stackoverflow.com/questions/15750290/setting-the-html-label-for-attribute-in-javascript?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa

I have the same problem. This works for all apps except ARC ```lua hs.hotkey.bind({"cmd", "alt"}, "a", function() local arc = hs.application.find("arc") if arc:isFrontmost() then arc:hide() else hs.application.launchOrFocus("/Applications/Arc.app") end end) ```

Exceptions are not thrown for all invalid colors however. If using `oklch("z" 100 230)` the returned `.toString` value would be `oklch(NaN 100 230)`. Obviously, "z" is not acceptable input and...

I was trying to validate colors strings within an input while a user types.

Ok. I'll try that. I had sourcemaps set to false to because I was using gulp-sourcemaps and I wanted and external sourcemap. However, Pleeease was inlining it even when set...

Yeah, I can't get it to work. adding: ``` "sass": { "indentedSyntax" : true } ``` leads to this error ``` Error: Sass: parsing fails{ "status": 1, "file": "stdin", "line":...

The solution provided above isn't working for me. When using Pleeease for Sass (indented syntax) ``` "sass": { "indentedSyntax" : true }, ``` I get more errors. I don't think...