-
Notifications
You must be signed in to change notification settings - Fork 92
MarkUnknown checkbox visible with TranslateDoc - Fix #146 #160
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
Changes from all commits
caeff03
f926fb3
ded1c24
1f2d73b
b8ae5b9
963ae01
9187c4e
7a79a83
32f30cb
ec11119
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -191,9 +191,9 @@ | |
<i class="fa fa-file-text"></i> <span data-text="Translate_Document">Translate a document</span> | ||
</button> | ||
</div> | ||
<div class="col-lg-3 col-md-6 pull-right"> | ||
<div class="col-lg-3 col-md-6 pull-right" id="translateOptionsContainer"> | ||
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. So, I thought about this a bit and I'm not actually a huge fan of the siblings solution. It's clever and is probably the minimal diff or something but it requires carefully inspecting the HTML to figure out what things are siblings, etc. I would prefer a more explicit approach, e.g. hiding/showing 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. Sure. I would get on with this approach. 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. Done. |
||
<div class="checkbox" id="translateOptions"> | ||
<label class="pull-right"> | ||
<label class="pull-right" id="markUnknownContainer"> | ||
<input type="checkbox" id="markUnknown" checked> | ||
<span data-text="Mark_Unknown_Words">Mark unknown words</span> | ||
</label> | ||
|
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.
Um, I am not sure why this is appearing in the diff here :/ . I simply did a
git rebase
with master. Do you suggest making a separate PR? (The below snippet has the changes that you asked to do @sushain97 )!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.
Hm, maybe you're rebasing with your master instead of
origin/master
? I think these changes are separate so we don't want to merge them.Uh oh!
There was an error while loading. Please reload this page.
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.
Um, I did a
git fetch origin, git rebase origin/master
. I am not sure why it still exists. Is it okay if I create a new PR?