diff --git a/.gitignore b/.gitignore index 0d268ec..3a1be63 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -./conf.js +/conf.js diff --git a/index.html b/index.html index 42b93ab..6846dec 100755 --- a/index.html +++ b/index.html @@ -25,6 +25,11 @@ padding-left: 16px; } + .row { + margin: 0; + padding: 0; + } + .btn-group .col-md-4, .btn-group .col-md-12 { padding: 10px; } @@ -35,7 +40,7 @@ .bs-callout { padding: 20px; - margin: 36px 20px; + margin: 20px 0; border: 1px solid #eee; border-left-color: rgb(238, 238, 238); border-left-width: 1px; @@ -64,7 +69,7 @@
-

Free Telec v0.2.2

+

Free Telec v0.2.3

@@ -185,29 +190,31 @@
-
-

Raccourcis clavier

-

- Certaines fonctionnalités de la télécommande peuvent être directement utilisée avec votre clavier. -
- En voici la liste : -

- +
+
+

Raccourcis clavier

+

+ Certaines fonctionnalités de la télécommande peuvent être directement utilisée avec votre clavier. +
+ En voici la liste : +

+
    +
  • Entrée : ok
  • +
  • Flèche haut: haut
  • +
  • Flèche bas: bas
  • +
  • Flèche droite: droite
  • +
  • Flèche gauche: gauche
  • +
  • Echap: retour (touche rouge)
  • +
  • f: Free
  • +
  • m: Menu (touche verte)
  • +
  • i: Info (touche jaune)
  • +
  • s: Recherche (touche bleue)
  • +
  • a: A/V
  • +
  • 1-0: touche 1-0
  • +
  • +: Programme +
  • +
  • -: Programme -
  • +
+
@@ -228,7 +235,6 @@ }); $('body').on('keypress', function(e){ - console.log( e.keyCode , e.which); const codes = { 13: 'ok', 38: 'up', @@ -256,8 +262,6 @@ }; let code = (e.keyCode ? e.keyCode : e.which); - console.log('Code:', code, codes) - callApi(codes[code]); }); });