code-view.js 252 B

12345678910
  1. const $code = $("#code");
  2. const $main = $("#main");
  3. const $functions = $("#functions");
  4. let universalId = 0;
  5. function getCurrentMainLineNumber() {
  6. // TO DO: Find a way to know in wath line the main code is
  7. return $(".code-line").length + 1;
  8. }