TheSpartaPT
Lv.1
thanks,
maybe it's just me but at least tabs don't seem to be working. https://mdbootstrap.com/docs/standard/navigation/tabs/
EDIT: yeah, it was just me ? thanks for the release again
EDIT #2: Felt like contributing and wrote a mdb pro documentation bypasser userscript:
maybe it's just me but at least tabs don't seem to be working. https://mdbootstrap.com/docs/standard/navigation/tabs/
EDIT: yeah, it was just me ? thanks for the release again
EDIT #2: Felt like contributing and wrote a mdb pro documentation bypasser userscript:
Code:
// ==UserScript==
// @name MDBootstrap pro docs bypasser
// @namespace http://tampermonkey.net/
// @version 0.1
// @description bypasses mdbootstrap pro documentation restrictions
// @author TheSparta
// @match *://mdbootstrap.com/docs/*
// @icon https://www.google.com/s2/favicons?domain=tampermonkey.net
// @grant none
// @require https://code.jquery.com/jquery-3.6.0.min.js
// ==/UserScript==
(function() {
'use strict';
window.addEventListener('load', function() {
$('body').find('a[aria-controls^="example"]').map(function(idx, val) {
$(val).attr('data-mdb-toggle', 'collapse');
$(val).attr('href', '#' + $(val).attr('aria-controls'));
$(val).removeAttr('data-mdb-target');
});
});
})();
Last edited: