mirror of
https://github.com/lebr0nli/slader-extension.git
synced 2025-05-10 16:32:11 +00:00
Remove unneeded console.log()
calls
This commit is contained in:
parent
4a9c58256a
commit
bed0fccd17
|
@ -55,10 +55,8 @@ function processData(data){
|
||||||
|
|
||||||
// Display JSON data as answer
|
// Display JSON data as answer
|
||||||
qDetails.question.solutions.forEach(solution => {
|
qDetails.question.solutions.forEach(solution => {
|
||||||
console.log(solution)
|
|
||||||
const numSteps = solution.steps.length;
|
const numSteps = solution.steps.length;
|
||||||
solution.steps.forEach(step => {
|
solution.steps.forEach(step => {
|
||||||
//console.log(step);
|
|
||||||
const stepNum = step.stepNumber;
|
const stepNum = step.stepNumber;
|
||||||
// Create card element
|
// Create card element
|
||||||
var div = document.createElement('div');
|
var div = document.createElement('div');
|
||||||
|
|
Loading…
Reference in a new issue