-
Notifications
You must be signed in to change notification settings - Fork 7
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
New files (NavBar) #24
base: master
Are you sure you want to change the base?
Conversation
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.
A couple small changes, but otherwise looks good.
index.html
Outdated
<button id="genericButton" onclick="buttonCopy()">COPY</button> | ||
<button id="genericButton" onclick="buttonCut()">CUT</button> | ||
<button id="genericButton" onclick="buttonPaste()">PASTE</button> | ||
<br> |
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.
You probably mean class="genericButton"
and not id
.
stylesheet.css
Outdated
cursor: not-allowed; | ||
} | ||
|
||
#genericButton { |
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.
Change this to ".genericButton" to make it with with classes
Okay. I will make the changes and push the files.
…On Thu, May 24, 2018 at 16:40 Justin Li ***@***.***> wrote:
***@***.**** commented on this pull request.
A couple small changes, but otherwise looks good.
------------------------------
In index.html
<#24 (comment)>
:
> @@ -34,6 +34,15 @@
addBlocksHTML();
};
</script>
+ <button id="genericButton" onclick="buttonUndo()">UNDO</button>
+ <button id="genericButton" onclick="buttonRedo()">REDO</button>
+ <button id="genericButton" onclick="buttonDefaultZoom()">DEFAULT ZOOM</button>
+ <button id="genericButton" onclick="buttonZoomIn()">ZOOM IN</button>
+ <button id="genericButton" onclick="buttonZoomOut()">ZOOM OUT</button>
+ <button id="genericButton" onclick="buttonCopy()">COPY</button>
+ <button id="genericButton" onclick="buttonCut()">CUT</button>
+ <button id="genericButton" onclick="buttonPaste()">PASTE</button>
+ <br>
You probably mean class="genericButton" and not id.
------------------------------
In stylesheet.css
<#24 (comment)>
:
> @@ -63,5 +63,30 @@ body {
#parseButton:disabled {
background-color: grey;
color: white;
- cursor: default;
-}
+ cursor: not-allowed;
+}
+
+#genericButton {
Change this to ".genericButton" to make it with with classes
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#24 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AltOVdAP8uGRebdmyxQxjU7mKVA6-fDoks5t10TmgaJpZM4ULg4Z>
.
|
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.
Several more things. Also take a look at the CI results and fix them.
* @returns {undefined} | ||
*/ | ||
function buttonPaste(){ | ||
document.execCommand('Paste', data); |
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.
I am confused by this line - what's data
?
@@ -1,7 +1,7 @@ | |||
/* global require, module, editor, editorState, blockDict, monaco */ | |||
|
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.
You'll need to add your new functions into this list to fix the lint.
I followed your instructions in the e-mail.