We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On loading I have:
After pressing Enter or any code changes:
Code lines appeared!
Need load lines on init
The text was updated successfully, but these errors were encountered:
my Fix
initFlask(code){ if(!this.flask){ this.flask = new CodeFlask('.code', { language: 'js', lineNumbers: true }); this.flask.onUpdate((code) => { this.new_code = code; }); } this.flask.updateCode(code); this.flask.setLineNumber(); // manualy update lines }
Sorry, something went wrong.
my Fix initFlask(code){ if(!this.flask){ this.flask = new CodeFlask('.code', { language: 'js', lineNumbers: true }); this.flask.onUpdate((code) => { this.new_code = code; }); } this.flask.updateCode(code); this.flask.setLineNumber(); // manualy update lines }
I wrote it like your, but it doesn't work
my Fix initFlask(code){ if(!this.flask){ this.flask = new CodeFlask('.code', { language: 'js', lineNumbers: true }); this.flask.onUpdate((code) => { this.new_code = code; }); } this.flask.updateCode(code); this.flask.setLineNumber(); // manualy update lines } I wrote it like your, but it doesn't work
I solved it, because of the problem of passing parameters,the parameters can only be strings
No branches or pull requests
On loading I have:

After pressing Enter or any code changes:
Code lines appeared!
Need load lines on init
The text was updated successfully, but these errors were encountered: