We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3220e2a commit f339ee5Copy full SHA for f339ee5
resources/assets/component.js
@@ -526,7 +526,7 @@ window.ComponentDot = class {
526
this._switchMaker = function () {
527
let select = this.select;
528
let menu = document.createElement('div');
529
- menu.className = 'dlp-dot-switch';
+ menu.className = 'dlp dlp-dot-switch';
530
this.id_line_hash = [];
531
let line = 0;
532
for (let id in select) {
@@ -535,7 +535,7 @@ window.ComponentDot = class {
535
line++;
536
let option = document.createElement('div');
537
option.setAttribute('data-id', id);
538
- option.className = `dlp-button${this._modSettings.color}`;
+ option.className = `dlp dlp-button${this._modSettings.color}`;
539
option.textContent = select[id];
540
option.addEventListener('click', () => {
541
if (this.select_data.indexOf(id) !== -1) {
0 commit comments