Remove unused console.log

This commit is contained in:
Gabriel Augendre 2018-06-15 20:37:15 +02:00
parent 61fe379b97
commit 8a370d52ab

View file

@ -68,9 +68,6 @@ document.addEventListener("DOMContentLoaded", function (event) {
}
editor.addEventListener('change', function(event) {
console.log(editor.options);
console.log(editor.selectedIndex);
console.log(editor.options[editor.selectedIndex].text);
if (editor.options[editor.selectedIndex].text.toLowerCase().indexOf('autre') !== -1) {
otherEditor.style.display = 'block';
}