-
-
Notifications
You must be signed in to change notification settings - Fork 28
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
Create child views managing list of Predictions #2292
Merged
ianguerin
merged 2 commits into
NCEAS:feature-1796-places-autocomplete
from
ianguerin:feature-1796-pr-3
Mar 19, 2024
Merged
Create child views managing list of Predictions #2292
ianguerin
merged 2 commits into
NCEAS:feature-1796-places-autocomplete
from
ianguerin:feature-1796-pr-3
Mar 19, 2024
Conversation
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
ianguerin
changed the base branch from
develop
to
feature-1796-places-autocomplete
March 6, 2024 16:06
ianguerin
force-pushed
the
feature-1796-pr-3
branch
13 times, most recently
from
March 7, 2024 23:44
bbd347c
to
49ea0c5
Compare
yvonnesjy
reviewed
Mar 8, 2024
@@ -0,0 +1,6 @@ | |||
<div class="<%= classNames.content %> <% if(isFocused) { %>viewfinder-prediction__focused<% } %>"> | |||
<i class="icon-map-marker"></i> | |||
<div class="viewfinder-prediction__main" title="<%= description %>"> |
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.
interesting- is title
for accessibility?
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.
ianguerin
force-pushed
the
feature-1796-pr-3
branch
3 times, most recently
from
March 11, 2024 22:58
be6d824
to
5ed2497
Compare
yvonnesjy
approved these changes
Mar 12, 2024
ianguerin
force-pushed
the
feature-1796-pr-3
branch
2 times, most recently
from
March 15, 2024 22:34
f35c676
to
5057b73
Compare
ianguerin
force-pushed
the
feature-1796-places-autocomplete
branch
from
March 15, 2024 22:39
0b1ff8c
to
92f7005
Compare
ianguerin
force-pushed
the
feature-1796-pr-3
branch
2 times, most recently
from
March 15, 2024 23:20
dc7703c
to
e4c661c
Compare
Add ViewfinderModel which will be used by ViewfinderView in a later commit. Prediction models can be represented by a PredictionView which are in turn managed as an unordered list.
ianguerin
force-pushed
the
feature-1796-pr-3
branch
from
March 19, 2024 20:21
e4c661c
to
5aa928e
Compare
ianguerin
merged commit Mar 19, 2024
6a625b4
into
NCEAS:feature-1796-places-autocomplete
1 check passed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Prediction models can be represented by a PredictionView which are in
turn managed as an unordered list.
#1796