skin-dt-32 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/vueComponents.js +1 -1
- package/general.js +0 -10
- package/package.json +1 -1
package/config/vueComponents.js
CHANGED
|
@@ -11,7 +11,7 @@ Vue.component('titulo-especial', {
|
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
13
|
template: `
|
|
14
|
-
<h3 class="is-tweakeable"><span class="is-measurable"
|
|
14
|
+
<h3 class="is-tweakeable"><span class="is-measurable">{{ cleaned }}<small>{{ cleaned }}</small></span></h3>
|
|
15
15
|
`
|
|
16
16
|
});
|
|
17
17
|
|
package/general.js
CHANGED
|
@@ -852,16 +852,6 @@ document.addEventListener('DOMContentLoaded', () => {
|
|
|
852
852
|
}
|
|
853
853
|
});
|
|
854
854
|
|
|
855
|
-
document.addEventListener('forumReady', () => {
|
|
856
|
-
if (document.querySelector('.forum-head > h3 > span') && forumConfig.skinOptions.numberHeads) {
|
|
857
|
-
[].forEach.call(document.querySelectorAll('.forum-head > h3 > span'), (item, index) => {
|
|
858
|
-
const realIndex = index + 1;
|
|
859
|
-
|
|
860
|
-
item.insertAdjacentHTML('afterbegin', '<i>' + (realIndex > 9 ? (realIndex > 99 ? realIndex : '0' + realIndex) : '00' + realIndex) + '.</i>');
|
|
861
|
-
});
|
|
862
|
-
}
|
|
863
|
-
});
|
|
864
|
-
|
|
865
855
|
document.addEventListener('forumReady', () => {
|
|
866
856
|
if (window.location.pathname !== '/' && document.querySelector('#forum-topbar') && forumConfig.skinOptions.hideTopbar) {
|
|
867
857
|
document.querySelector('#forum-topbar').remove();
|