generic-skin 4.0.6 → 4.0.7
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/general.js +2 -1
- package/package.json +1 -1
package/general.js
CHANGED
|
@@ -140,7 +140,8 @@ document.addEventListener('DOMContentLoaded', () => {
|
|
|
140
140
|
const author = item.querySelector('.topiclist-topic .to-process .lastpost-author');
|
|
141
141
|
const url = item.querySelector('.topiclist-topic .to-process .lastpost-link a').href;
|
|
142
142
|
const date = item.querySelector('.topiclist-topic .to-process .lastpost-date').textContent;
|
|
143
|
-
|
|
143
|
+
const authora = author;
|
|
144
|
+
console.log(authora);
|
|
144
145
|
|
|
145
146
|
item.querySelector('.topic-lastpost').href = url;
|
|
146
147
|
item.querySelector('.topic-lastpost').title = 'Último mensaje por ' + author.textContent.trim() + ', ' + date;
|