remove some typos

This commit is contained in:
Kayn Ty 2018-05-08 15:21:38 +02:00
parent db6be9324d
commit 24dca67a4d
4 changed files with 15 additions and 23 deletions

View File

@ -3,25 +3,18 @@
<div class="loginland "> <div class="loginland ">
<div class="login-choices"> <div class="login-choices">
<a href="{{ path('homepage') }}" class="btn btn-default logo-home pull-left">
<i class="fa fa-home"></i>
Caisse Bliss
</a>
{% if is_granted("IS_AUTHENTICATED_REMEMBERED") %} {% if is_granted("IS_AUTHENTICATED_REMEMBERED") %}
<div class="row"> <div class="row">
<div class="col-xs-9"> <div class="col-xs-9">
<div id="menu-dashboard"> <div id="menu-dashboard">
<ul class="nav nav-pills pull-right"> <ul class="nav nav-pills pull-right">
<li> <li>
<a class="btn {% if app.request.attributes.get('_route') == 'homepage' %} <a href="{{ path('homepage') }}" class="btn btn-default logo-home pull-left">
btn-success <i class="fa fa-home"></i>
{% else %} Caisse Bliss
btn-default
{% endif %}" href="{{ path('homepage') }}" title="accueil Caisse">
<i class="fa fa-circle-o-notch "></i>
</a> </a>
<li> </li>
<li> <li>
<a class="btn {% if app.request.attributes.get('_route') == 'dashboard' %} <a class="btn {% if app.request.attributes.get('_route') == 'dashboard' %}
btn-success btn-success
@ -124,7 +117,8 @@
<i class="fa fa-key"></i> <i class="fa fa-key"></i>
{{ 'layout.login'|trans }}</a> {{ 'layout.login'|trans }}</a>
<a class="btn btn-default" <a class="btn btn-default"
href="{{ path('fos_user_registration_register') }}">{{ 'layout.register'|trans }}</a> href="{{ path('fos_user_registration_register') }}">Inscription
</a>
</div> </div>
{% endif %} {% endif %}
</div> </div>

View File

@ -21,12 +21,17 @@
</div> </div>
{% if not app.user.products |length %} {% if not (app.user.products |length) %}
<div> <div class="alert alert-info">
<i class="fa fa-info"></i>
Créez facilement vos catégories de produits et vos produits juste en écrivant un nom par ligne dans Créez facilement vos catégories de produits et vos produits juste en écrivant un nom par ligne dans
<a class="btn btn-success" href="{{ path('import') }}">l'interface d'importation simplifiée</a> <a class="link" href="{{ path('import') }}">
<button>
l'interface d'importation simplifiée
</button>
</a>
</div> </div>
<hr> <hr>
{% endif %} {% endif %}

View File

@ -1,6 +1,4 @@
{% verbatim %} {% verbatim %}
<button>tooltip example</button>
<button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Tooltip on top">Tooltip on top</button>
<div id="not_loaded" ng-if="!initLoadDone"> <div id="not_loaded" ng-if="!initLoadDone">
<div class="well"> <div class="well">
<i class="fa fa-refresh fa-spin fa-3x"></i> Chargement en cours de vos produits <i class="fa fa-refresh fa-spin fa-3x"></i> Chargement en cours de vos produits

View File

@ -189,8 +189,3 @@ angular
$scope.fetchProductsFromDB(); $scope.fetchProductsFromDB();
})(); })();
}]); }]);
console.log('jQuery', jQuery);
jQuery(function () {
jQuery('[data-toggle="tooltip"]').tooltip();
console.log('jQuery(\'[data-toggle="tooltip"]\')', jQuery('[data-toggle="tooltip"]'));
});