Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
alistair3149 authored Jan 19, 2025
1 parent 21cb89c commit 5bee452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ext.tabberNeue/ext.tabberNeue.js
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ async function load( tabberEls ) {
TabberAction.toggleAnimation( true );
window.addEventListener( 'hashchange', ( event ) => {
const hash = window.location.hash.slice( 1 );
const decodedHash = mw.util.percentDecodeFragment( hash )
const decodedHash = mw.util.percentDecodeFragment( hash );
const escapedHash = mw.util.escapeIdForAttribute( decodedHash );
const idFromUrlHash = escapedHash.replace( 'tabber-tabpanel-', 'tabber-tab-' );
const tab = document.getElementById( idFromUrlHash );
Expand Down

0 comments on commit 5bee452

Please sign in to comment.