Hi David,
It kept bugging me that I couldn't use Cardo at work so I've kept on researching. Here's what I found:
The getRandomValues error was because IE11 is supposed to support window.crypto but
it is considered experimental. One has to use window.msCrypto instead.
Once that error was resolved, a new one popped up: Object doesn't support property or method 'includes'. In $:/plugins/Cardo/filters/fieldContains.js, there is "text.includes(operator.operand)".
Internet Explorer doesn't support INCLUDES, so I changed it to "text.indexOf(operator.operand)" and the error cleared up.
I now have a functioning version of Cardo on IE11. - I spoke too soon. As I started adding different types of tiddlers and trying to delete some of your examples, I noticed that while I could add, I couldn't delete. Also, the system didn't necessarily recognize what I was adding. For example, it recognized the first meeting I added and handled it correctly. Then I tried adding a new Area, and that, while saved, was not added to the drop down lists. I added a contact and they were assigned the same tiddlers as Sam Tasker, so I'm thinking that the guids aren't generating correctly for the new items, which I think goes back to getRandomValues.
I now have a loadable version of Cardo on IE11 and can continue troubleshooting it. :/
Take care,
ama