Christopher Joel

Results 223 comments of Christopher Joel

Hi, this is a symptom of a bug that was addressed a few days ago. Can you confirm that you have the latest version of the element (v1.0.2)? Thanks!

@mm-gmbd Hi! `firebase-document` should be able to support two instances pointed at the same location without the error condition you are describing. So, the behavior you describe sounds like a...

Sorry, there seems to be some conflated discussion here. > This doesn't exactly reproduce the scenario described above @brogers4 Please keep unrelated repro cases to a separate issue (unless you...

Also, it's kind of annoying that the error persists the way it does. I don't want to have to toggle off linting just to dismiss it :P

Thanks for looking into this 🙌 left a note, LMKWYT!

Thanks for reporting @aaronmars As you can probably tell, this project predated the latest proposals for HTML Modules, and hasn't received a lot of attention since Microsoft starting pushing for...

@goldingdamien thanks for the question. If all you want to do is to import a file as a string, I would recommend the very handy Fetch API: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API `` tags...

This is slightly tricky to fix in the parser without adding a significant number of costly conditional checks, but it's actually quite trivial and cheap to fix with a specialized...

An example of the specialized `tokenizeComment` method: ``` javascript tokenizeComment(...args) { let token = super.tokenizeComment(...args); // Force token to be zero length token.start = token.end; return token; } ```