Gary Oberbrunner
Gary Oberbrunner
I came across this because of seeing what I think is too-aggressive math parsing. In the US, we often need to write about finances, so: ``` - dinner was $41.56,...
Yes, you're right. I've gotten into the habit of prefixing all my `$` with `\` because it's hard to know exactly when it'll go into math mode, but if space...
Hi folks; I read through this thread but I'm still a bit confused -- what's the status of bump maps in glTF 2.0? Supported at all, via extension or in...
Perhaps Google changed something, but the old URL still works for me: ``` % curl -s https://www.googletagmanager.com/gtm.js?id=GTM-XXXXXXX // Copyright 2012 Google Inc. All rights reserved. (function(){ var data = {...
Where are you? Does it work if you just use `curl`? Are you sure you're using the right GTM ID? I note that if I don't use a GTM ID...
This is exactly what I want to do with this lib -- kick off jobs. `apply` is the right way to do that, correct? I'd appreciate any news on this....
I'd like this as well. I'm dumping 3d graphics state and having every matrix and vector come out one element per line is super verbose looking. I'd much prefer them...
@AlexHolly yes that looks exactly like what I'd like. I don't use folded style but if there's an update to your patch that doesn't have that issue, perhaps that could...
I did get it working using my `myTour` object instance, using `myTour.getCurrentStep()` instead of the global `shepherd` object.
Yup, almost -- `const currentStep = Shepherd.activeTour?.getCurrentStep()` -- need the `?.` because `activeTour` can be null. And you need `.getElement()` too rather than `.el`. So: ```typescript when: { show() {...