-
Notifications
You must be signed in to change notification settings - Fork 850
[과제번역] Part2. 4.4 Form submission: event and method submit 과제 번역 #1122
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
Open
devxsby
wants to merge
7
commits into
javascript-tutorial:master
Choose a base branch
from
devxsby:trans-2.4.4
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
68e7a6c
2.4.4.1.task
devxsby 3b4ad83
2.4.4.1.solution
devxsby e2c96c9
2.4.1.1.task.update
devxsby 79324c5
2.4.4.1.solution.update
devxsby 1f9c383
2.4.4.1.solution_update2
devxsby 8600136
[과제번역]Part2 4.4 forms-submit / Q1/ task
devxsby 3f7e7bc
[과제번역]Part2 4.4 forms-submit / Q1/ solution
devxsby File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
A modal window can be implemented using a half-transparent `<div id="cover-div">` that covers the whole window, like this: | ||
모달 창은 다음과 같이 전체 창을 덮는 반투명 `<div id="cover-div">`를 사용하여 구현할 수 있습니다. | ||
|
||
```css | ||
#cover-div { | ||
|
@@ -13,8 +13,8 @@ A modal window can be implemented using a half-transparent `<div id="cover-div"> | |
} | ||
``` | ||
|
||
Because the `<div>` covers everything, it gets all clicks, not the page below it. | ||
`<div>`는 모든 것을 다루기 때문에 그 아래 페이지가 아닌 모든 클릭을 얻습니다. | ||
|
||
Also we can prevent page scroll by setting `body.style.overflowY='hidden'`. | ||
또한 `body.style.overflowY='hidden'`을 설정하여 페이지 스크롤을 방지할 수 있습니다. | ||
|
||
The form should be not in the `<div>`, but next to it, because we don't want it to have `opacity`. | ||
`불투명`을 원하지 않기 때문에 폼은 `<div>`가 아니라 그 옆에 있어야 합니다. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 폼이 투명해지는 것을 원치 않기 때문에 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 감사합니다. 수정하겠습니다 👍 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<div>
가 창 전체를 덮기 때문에 항상 밑에 있는 페이지가 아닌<div>
가 클릭 됩니다.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
감사합니다. 수정하겠습니다 👍