Removed unecessary href='#' properties

This commit is contained in:
Guigui 2011-03-23 16:50:44 +01:00
Родитель 9047add117
Коммит c2b1bda3f8
8 изменённых файлов: 14 добавлений и 15 удалений

Просмотреть файл

@ -1,7 +1,6 @@
<ul id="badge-list" class="section" data-count="{{ badges|count }}">
{% for badge in profile.badges %}
<li class="badge badge{{ badge.id|replace('_','-') }}" data-index="{{ loop.index }}" data-id="{{ badge.id }}" data-name="{{ badge.name|safe }}" data-description="{{ badge.description|safe }}">
<a href="#"></a>
<div class="badge-wrapper">
</div>
</li>

Просмотреть файл

@ -64,7 +64,7 @@
{% endtrans %}
</p>
<hr>
<a href="#" class="button close">{{ _('OK') }}</a>
<a class="button close">{{ _('OK') }}</a>
</div>
{% if is_pwreset %}
{% include "desktop/popups/pwreset.html" %}

Просмотреть файл

@ -27,7 +27,7 @@
<p class="section legend">
{{ _('The password reset link was invalid, possibly because it has already been used.') }}
</p>
<a href="#" class="button close">{{ _('OK') }}</a>
<a class="button close">{{ _('OK') }}</a>
{% endif %}
</div>
@ -38,5 +38,5 @@
<p class="section legend">
{{ _('You can now sign in.') }}
</p>
<a href="#" class="button close">{{ _('Sign in') }}</a>
<a class="button close">{{ _('Sign in') }}</a>
</div>

Просмотреть файл

@ -77,13 +77,13 @@
<span>{{ _('Joined Spark: <span>{date_joined}</span>')|fe(date_joined=date_joined ) }}</span>
</div>
<hr>
<a href="#" class="button change-password">{{ _('Change password') }}</a>
<a href="#" class="button change-email">{{ _('Change email address') }}</a>
<a href="#" class="button delete-account">{{ _('Delete your account') }}</a>
<a href="#" class="button grey close">{{ _('Close') }}</a>
<a class="button change-password">{{ _('Change password') }}</a>
<a class="button change-email">{{ _('Change email address') }}</a>
<a class="button delete-account">{{ _('Delete your account') }}</a>
<a class="button grey close">{{ _('Close') }}</a>
</div>
<div id="success">
<h3 class="noborder">{{ _('Success!') }}</h3>
<a href="#" class="button close">{{ _('OK') }}</a>
<a class="button close">{{ _('OK') }}</a>
</div>
</div>

Просмотреть файл

@ -20,7 +20,7 @@
{% include "desktop/includes/hello.html" %}
</div>
{% else %}
<span id="have-account">{{ _('Already have a spark?') }} <a href="#" class="popup-trigger">{{ _('Sign in >') }}</a></span>
<span id="have-account">{{ _('Already have a spark?') }} <a class="popup-trigger">{{ _('Sign in >') }}</a></span>
{% endif %}
<div id="logo">
<a href="{{ url('desktop.home') }}">

Просмотреть файл

@ -19,7 +19,7 @@
<a class="hidden" id="show-everyone">{{ _("Show everyone's shares") }}</a>
{% else %}
<li class="logged-out">{{ _('Show your shares') }}
<span><a id="sign-in-first" class="popup-trigger" href="#">{{ _('Sign in first >') }}</a></span>
<span><a id="sign-in-first" class="popup-trigger">{{ _('Sign in first >') }}</a></span>
{% endif %}
</li>
{# L10n: Action verb placed next to a dropdown list of cities, allowing to filter the visualization on a specific city. #}

Просмотреть файл

@ -50,7 +50,7 @@
{# L10n: Space is limited here. The translation should be no longer than the English version, leave only "Later" if needed #}
<div class="button left-button"><a href="{{ url('mobile.home') }}">{{ _('Maybe later') }}</a></div>
{# L10n: Space is limited here. The translation should be no longer than the English version #}
<div class="button right-button" id="geolocate"><a href="#">{{ _('Locate me') }}</a><img src="{{ MEDIA_URL }}img/mobile/spinner.gif" alt="" class="preload spinner"></div>
<div class="button right-button" id="geolocate"><a>{{ _('Locate me') }}</a><img src="{{ MEDIA_URL }}img/mobile/spinner.gif" alt="" class="preload spinner"></div>
{% elif geolocation == 'success' %}
<input type="hidden" name="next" value="1">
<div class="button left-button"><a href="{{ url('mobile.home') }}">{{ _('Cancel') }}</a></div>
@ -59,7 +59,7 @@
{% else %}
<div class="button left-button"><a href="{{ url('mobile.home') }}">{{ _('Cancel') }}</a></div>
{# L10n: Space is limited here. The translation should be no longer than the English version #}
<div class="button right-button" id="geolocate"><a href="#">{{ _('Try again') }}</a><img src="{{ MEDIA_URL }}img/mobile/spinner.gif" alt="" class="preload spinner"></div>
<div class="button right-button" id="geolocate"><a>{{ _('Try again') }}</a><img src="{{ MEDIA_URL }}img/mobile/spinner.gif" alt="" class="preload spinner"></div>
{% endif %}
</div>
</form>

Просмотреть файл

@ -63,14 +63,14 @@
<li><a href="{{ url('mobile.about') }}">{{ _('About Mozilla') }}</a></li>
</ul>
<a href="#" id="logout">{{ _('Do you wanna sign out?') }}</a>
<a id="logout">{{ _('Do you wanna sign out?') }}</a>
</div>
<div id="logout-confirmation">
<p class="section sans confirmation">
{{ _('Are you sure you want to sign out?') }}
</p>
<div class="buttons-wrapper">
<div class="button left-button"><a href="#">{{ _('Cancel') }}</a></div>
<div class="button left-button"><a>{{ _('Cancel') }}</a></div>
<div class="button right-button"><a href="{{ url('users.mobile_logout') }}">{{ _('Yes') }}</a></div>
</div>
</div>