mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
This allows themes to customize link attributes:
```
api.reopenWidget("quick-access-item", {
_linkAttributes(href) {
const attributes = this._super(...arguments);
// do stuff
return attributes;
}
}
```