Extension talk:TabberNeue
Latest comment: 18 days ago by 85.64.143.45 in topic Box overriding too many tabs
Box overriding too many tabs
editI have a box displayed alongside tab contents. When the tab menu contains too many tabs the box overflows it, and scrolling the tab menu is broken. I can see the arrow indicating more tabs exist, but nothing happens when I click it. What could be the reason? I'm using MW 1.40 and TabberNeue 2.7.4. 85.64.143.45 20:00, 31 March 2025 (UTC)
disable cache option
editsometimes the cache prevents getting the latest changes of a transcluded page. Would you consider to add an option in order to control the cache here
async fetchData() { try { await this.validateUrl(); const cachedData = this.checkCache(); if ( cachedData ) { return cachedData; } const data = await this.fetchDataFromUrl(); const parsedData = this.parseData( data ); return this.cacheData( parsedData ); } catch ( error ) { return Promise.reject( `[TabberNeue] Error fetching data: ${ error }` ); } }
(modules/Transclude.js) in the tabbertransclude
tag to disable it if needed ? Thomas-topway-it (talk) 10:17, 24 February 2025 (UTC)