1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-28 15:27:43 +00:00
* Added: Setting to hide Drops messages in chat.
* Fixed: Chat Colors not being applied to chat in Mod View.
* Fixed: The color of the search input not being affected.
* Changed: Add a disclaimer to the `Show Overlay Extensions` setting to clarify that it does not prevent extensions from loading.
* Changed: Wait up to a full minute for add-on scripts to load.
* API Added: The `<react-link />` Vue component now has a `state` prop for passing state data with links, necessary for navigating to certain Twitch pages.
This commit is contained in:
SirStendec 2021-09-04 20:14:58 -04:00
parent c1fba86dc9
commit a529e7fd27
10 changed files with 47 additions and 12 deletions

View file

@ -7,14 +7,14 @@
<script>
export default {
props: ['href', 'click'],
props: ['href', 'click', 'state'],
methods: {
onClick(event) {
this.$emit('click', event);
if ( ! event.defaultPrevented && ! this.href.includes('//') )
this.reactNavigate(this.href, event);
this.reactNavigate(this.href, event, this.state);
}
}