]> BookStack Code Mirror - bookstack/blobdiff - resources/js/components/setting-app-color-scheme.js
Comments: Added HTML filter on load, tinymce elem filtering
[bookstack] / resources / js / components / setting-app-color-scheme.js
index d8e39d4650045b5c533ba92aea01f43814d8501d..add2d0cdac33c433570eab64da7efceff52a53c4 100644 (file)
@@ -59,7 +59,6 @@ export class SettingAppColorScheme extends Component {
         const rgb = this.hexToRgb(hexVal);
         const rgbLightVal = `rgba(${[rgb.r, rgb.g, rgb.b, '0.15'].join(',')})`;
 
-        console.log(input.name, lightName, hexVal, rgbLightVal);
         const lightColorInput = this.container.querySelector(`input[name="${lightName}"][type="hidden"]`);
         lightColorInput.value = rgbLightVal;
     }