Daniel
Daniel
Hi If am creating a tree that includes a webcomponent which updates on `attributeChangedCallback`. However, through `hyperx`, all specified attributes end up being passed to `virtual-dom` as props, because attributes...
https://github.com/ember-cli/ember-cli/blob/master/lib/tasks/test-server.js#L34 It looks here like any kind of watching is incompatible with specifying pre-built dist directories using `--path`. But I want to have one process watching and rebuilding a dist...
# Description This is getting really close to a perfect working formatter of hbs files in VSCode... just still one more issue. There doesn't seem to be any way to...
stack trace on restarting: Process: Xcode [41851] Path: /Applications/Xcode.app/Contents/MacOS/Xcode Identifier: com.apple.dt.Xcode Version: 12.0 (17219) Build Info: IDEFrameworks-17219000000000000~2 (12A7209) Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: Xcode [41851] User...
Took me a while to figure this out; I thought my phone was broken. Happens straight after a clean reformat of my phone (Pixel 5). Any change of network from...
- switch from QWERTY to DVORAK - alt+cmd+actual letter 'y' on keyboard continues to operate the shortcut, rather than the new DVORAK key for 'y', which is 't' on the...
Hey man, great idea for a module! Unfortunately, it's a little brittle in that $("#ApptForm").parent().parent().parent().find("tr:nth-child(3) .alert").text().replace(" at "," "); fails as there is no 'ApptForm' on the Santa Clara website,...
Reproduce - go into Rename mode, press CMD+Left to go to the start of the file name. The selection appears to include the icon at the start, grays out the...
Have just spent about an hour trying to convert this: ```oninput={{action (mut this.creativeForForm.shareContent.shareCommentary.text) value="target.value"}}``` into this: ```{{on "input" (pick "target.value" (set this "creativeForForm.shareContent.shareCommentary.text"))}}``` I would have expected this to work...
```javascript var toObject = function(str){ str = (str || '').split(';') var result = {} str.forEach(function(item){ var split = item.split(':') if (split.length == 2){ result[split[0].trim()] = split[1].trim() } }) return result...