8000 Fix #2155 - Allow editor.process to run on behalf of users by WebReflection · Pull Request #2177 · pyscript/pyscript · GitHub
[go: up one dir, main page]

Skip to content

Fix #2155 - Allow editor.process to run on behalf of users #2177

New issue

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

Merged
merged 3 commits into from
Sep 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
< 8000 svg style="box-sizing: content-box; color: var(--color-icon-primary);" width="32" height="32" viewBox="0 0 16 16" fill="none" aria-hidden="true" data-view-component="true" class="anim-rotate"> Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 20, 2024
commit b76bfd8ed5469fae6435e7a0c4dbdc01262f95f7
3 changes: 2 additions & 1 deletion pyscript.core/tests/manual/submit.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from pyscript import document


def submit(event):
editor = document.querySelector('#editor')
editor = document.querySelector("#editor")
editor.process(editor.code, True)
0