Skip to content
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

Pop Over Over Site #6771

Merged
merged 7 commits into from
Jun 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/dashboard/templates/shared/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<ul class="gc-search-result">
<template v-if="results && results[source_type]">
<li v-for="result in results[source_type]" class="gc-search-result__content p-3" :key="result.id">
<a :href="[[ result.url ]]" class="d-flex">
<a :href="[[ result.url ]]" class="d-flex" v-bind:data-usercard="result.title">
<img class="gc-search__avatar my-auto mr-3" :src="[[ result.img_url ]]" :alt="result.title" />
<div>
<p class="gc-search-result__title font-body mb-0">[[ result.title ]]</p>
Expand Down Expand Up @@ -80,4 +80,4 @@
<p class="gc-search-result__description font-smaller-2 text-center">No matches found</p>
</template>
</div>
</div>
</div>
1 change: 1 addition & 0 deletions app/quests/templates/quests/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,7 @@ <h4 class="pt-0">Play Gitcoin Quests Now.</h4>
{% block 'scripts' %}
<script src="{% static "v2/js/lib/jquery-unveil.js" %}"></script>
<script src="{% static "v2/js/pages/quests.index.js" %}"></script>
<script src="{% static "v2/js/user_card.js" %}"></script>
<script>
$(document).ready(function() {
setInterval(function(){
Expand Down
2 changes: 1 addition & 1 deletion app/retail/templates/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ <h4 class="font-heading">{% trans "We are Proudly" %}</h4>
<div class="col-10 col-md-6 col-lg-3 mx-auto">
<div class="card">
{% if handle %}
<a href="/profile/{{handle}}">
<a href="/profile/{{handle}}" data-usercard="{{handle}}>
{% endif %}
<img class="avatar {{fname}} mx-auto" src="/static/v2/images/team/{{fname}}.png">
{% if handle %}
Expand Down
4 changes: 2 additions & 2 deletions app/retail/templates/leaderboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ <h1 class="font-title-lg font-weight-semibold mt-2">{% trans "None found" %}</h1
{% endif %}
<div class="ml-3 item-count-bounties" style="white-space: nowrap">
{% if not is_linked_to_profile %}
<a href="/profile/{{item.github_username}}" target="_blank" >
<a href="/profile/{{item.github_username}}" data-usercard="{{item.github_username}}" target="_blank" >
{{item.at_ify_username}}
</a>
{% else %}
Expand Down Expand Up @@ -212,7 +212,7 @@ <h1 class="font-title-lg font-weight-semibold mt-2">{% trans "None found" %}</h1
<script src="/dynamic/js/tokens_dynamic.js"></script>
<script src="{% static "v2/js/tokens.js" %}"></script>
<script src="{% static "v2/js/pages/leaderboard.js" %}"></script>

<script src="{% static "v2/js/user_card.js" %}"></script>
<script src="{% static "v2/js/lib/jquery-unveil.js" %}"></script>
<script>
$(document).ready(function() {
Expand Down