Results 112 comments of Tom Najdek

Traditional approach would be to add a new css class to `` (or a div container if you have one). Then that class would be removed once js, in this...

You don't need that, you can just use ngCss, use a dedicated directive or put the logic in your index controller. Try something like this ``` ``` then in css...

Hey, not sure what could be causing it. I've recently refreshed the seed project, could you try again using the latest version? Thanks!

Thanks for sharing the speed comparison demo @caub! I wasn't convinced by "way slower" so I've [uncommented some code](https://jsfiddle.net/6uaktq3s/9/) to find out that pvorb aka [node-md5](https://github.com/pvorb/node-md5) is about 50 times...

If you can't or don't want to use the script, here is a step-by-step guide on how to generate a self-signed certificate and make macOS trust it: First generate self-signed...

I slightly prefer current approach as it's more explicit way but I don't have strong feeling either way. Couple of reasons for my approach: * We would have to do...

Updated to override Date's prototype. I've tried my best to pick the right place where this should exist, let me know if I should move the logic (or the file)...

Here's a super simple example: ``` title var userId = 123456789; //your user id Zotero.config.apiKey = ''; // you can create one here: https://www.zotero.org/settings/keys Zotero.config.useConfigKey = true; Zotero.init(); lib =...

I'm wondering if something similar to [css tag color lookup](https://github.com/zotero/zotero/blob/e2b72944bea4585e52ea029547dc416292b9138a/scss/components/_tagSelector.scss#L136-L143) we're doing for tags in dark mode would maybe work here as well? There, we use data attribute to allow...