This file contains hidden or 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
| <div class="container search"> | |
| <div class="row"> | |
| <div class="col-sm-4 col-sm-offset-4"> | |
| <div class="input-group"> | |
| <input class="form-control typeahead" type="text" id="query" placeholder="Search for friends by name" autocomplete="off" spellcheck="false" autocapitalize="off"></input> | |
| </div> | |
| </div> | |
| </div> | |
| </div> |
This file contains hidden or 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
| # Very precious debug gems :) | |
| gem 'binding_of_caller', group: :development | |
| gem 'better_errors', group: :development |
This file contains hidden or 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
| $(document).ready(function(){ | |
| //On crée la piste de course | |
| var trackSize = 20; | |
| generateTrack(trackSize); | |
| //On lance le jeu | |
| runGame(); | |
| }); |
This file contains hidden or 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
| require_relative "task_repository" | |
| require_relative "display" | |
| require_relative "controller" | |
| # Creer fausse base de données | |
| task_repository = TaskRepository.new | |
| # Creer un Display | |
| display = Display.new |