forked from BenC14/Dumbledore
-
Notifications
You must be signed in to change notification settings - Fork 29
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
Modal function #184
Closed
Closed
Modal function #184
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
09f4a3e
study code
LeeYeEun2 1e7a77a
Merge branch 'kosslab_master'
LeeYeEun2 ad29556
package.json.rej...
LeeYeEun2 66378b7
Merge branch 'master' of https://github.com/kosslab-kr/Dumbledore int…
LeeYeEun2 c129fe0
why...
LeeYeEun2 dd7c78d
commit
LeeYeEun2 b9d2cb6
Merge branch 'kosslab_master' into commit_brench
LeeYeEun2 bdf41ed
error
LeeYeEun2 6f56bcb
error
LeeYeEun2 ae5dbc1
make modal
LeeYeEun2 9e1f9ba
Merge branch 'master' of https://github.com/kosslab-kr/Dumbledore
LeeYeEun2 75103d7
no message
LeeYeEun2 8c21302
make modal
LeeYeEun2 632efb8
modal css
LeeYeEun2 d6806bb
modal css
LeeYeEun2 67a02a3
Merge branch 'add_modal' into kosslab_master
LeeYeEun2 5486494
css for modal
LeeYeEun2 13198d1
add
LeeYeEun2 204210a
Merge branch 'add_modal' into kosslab_master2
LeeYeEun2 aad628a
make modal
LeeYeEun2 8835ec9
Merge branch 'make_modal'
LeeYeEun2 38cf750
modify modal
LeeYeEun2 b1d8656
modify navbar
LeeYeEun2 9ebb985
Merge branch 'master' into kosslab_master
LeeYeEun2 5b8201b
modify modal
LeeYeEun2 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 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
Binary file not shown.
Binary file not shown.
This file contains 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 |
---|---|---|
|
@@ -155,4 +155,4 @@ class Dumbledore { | |
} | ||
} | ||
|
||
module.exports = Dumbledore; | ||
module.exports = Dumbledore; | ||
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. Newline required at end of file but not found. (eol-last) |
This file contains 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
diff a/package.json b/package.json (rejected hunks) | ||
@@ -17,5 +17,16 @@ | ||
"random-js": "^1.0.8", | ||
"slackbots": "^1.1.0", | ||
"sqlite3": "^3.1.13" | ||
+ }, | ||
+ "bin": { | ||
+ "dumbledore": "bot.js" | ||
+ }, | ||
+ "devDependencies": {}, | ||
+ "keywords": [] | ||
+ /* | ||
+ "repository" : { | ||
+ "type": "git", | ||
+ "url" : "https://github.com/LeeYeEun2/Dumbledore.git" | ||
} | ||
+ */ | ||
} |
This file contains 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
html, body{height : 100%} | ||
#navbar { | ||
background-color: black; | ||
padding: 1% 1.5%; | ||
display: flex; | ||
box-sizing: border-box; | ||
align-items: center; | ||
height: 6%; | ||
color: white; | ||
font-size: 1.3rem; | ||
} | ||
|
||
#login_key { | ||
position: relative; | ||
left : 15%; | ||
height: 33px; | ||
} | ||
|
||
#login_pw { | ||
position: relative; | ||
left : 6.7%; | ||
height: 33px; | ||
} | ||
|
||
#modal-size{ | ||
position: relative; | ||
left : 0%; | ||
width: 30%; | ||
margin: auto; | ||
-webkit-box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
box-sizing: border-box; | ||
} | ||
|
||
#bot_name { | ||
position: relative; | ||
left : 8%; | ||
height: 33px; | ||
} | ||
|
||
#bot_pw { | ||
position: relative; | ||
left : 8.6%; | ||
height: 33px; | ||
} |
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.
Missing semicolon. (semi)
Expected exception block, space or tab after '//' in comment. (spaced-comment)