Shaun Scovil

Results 9 comments of Shaun Scovil

@OscarGodson @zethussuen I am experiencing the same thing in Chrome (Version 35.0.1916.153) and Safari (Version 7.0.4) on Mac OSX (Version 10.9.3). In Chrome, the full screen view is blank like...

**SOLUTION:** In `epiceditor.js`, change line 197 from this: ``` javascript return content.replace(/\u00a0/g, ' ').replace(/ /g, ' '); ``` ...to this: ``` javascript return content.replace(/\u00a0/g, ' ').replace(/ /g, ' ').replace(/\u0026/g, '&').replace(/&/g, '&'); ```...

Hey, just wanted to mention that I added some `docker-compose` documentation in #223 but it looks like the code coverage test failed? I only edited a markdown file, so not...

I was able to solve this by adding a click handler to my language selector. The click handler calls `setLocale`, but I also use the `:to` directive to update the...

I recently solved this problem and wrote an article explaining how I did it, for anyone who is interested: https://shaunscovil.com/jira-automation-for-github-reviews-5da81ee72af8

I just used [node.extend](https://www.npmjs.com/package/node.extend) to combine multiple JS config files and use that as defaults. Example: https://gist.github.com/sscovil/d7f20a8aad807e334d622d86a247b4c7

Hey Jason, following up on my email -- I think I'm going to take a crack at this...it seems like the best solution would be to use the container div...

> fix problem warn moderate > > package.json > > "overrides": { "esbuild": "0.25.1", }, Adding to @artiefy 's fix above, if you're using pnpm you can add this to...

> > ``` > > "pnpm": { > > "overrides": { > > "esbuild": "^0.25.0" > > } > > }, > > ``` > > Did not work for...