Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Double quotes for HTML attributes #610

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

Merged
merged 1 commit into from
Oct 24, 2016
Merged
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
38 changes: 19 additions & 19 deletions appengine/standard/firebase/firetactoe/templates/fire_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,30 +11,30 @@
</script>
</head>
<body>
<div id='display-area' class="waiting">
<div id="display-area" class="waiting">
<h2>Firebase-enabled Tic Tac Toe</h2>
<div id='other-player'>
<div id="other-player">
Waiting for another player to join.<br>
Send them this link to play:<br>
<div id='game-link'><a href='{{ game_link }}'>{{ game_link }}</a></div>
<div id="game-link"><a href="{{ game_link }}">{{ game_link }}</a></div>
</div>
<div id='your-move'>Your move! Click a square to place your piece.</div>
<div id='their-move'>Waiting for other player to move...</div>
<div id='you-won'>You won this game!</div>
<div id='you-lost'>You lost this game.</div>
<div id='board'>
<div class='t l cell' id='0'></div>
<div class='t c cell' id='1'></div>
<div class='t r cell' id='2'></div>
<div class='m l cell' id='3'></div>
<div class='m c cell' id='4'></div>
<div class='m r cell' id='5'></div>
<div class='b l cell' id='6'></div>
<div class='b c cell' id='7'></div>
<div class='b r cell' id='8'></div>
<div id="your-move">Your move! Click a square to place your piece.</div>
<div id="their-move">Waiting for other player to move...</div>
<div id="you-won">You won this game!</div>
<div id="you-lost">You lost this game.</div>
<div id="board">
<div class="t l cell" id="0"></div>
<div class="t c cell" id="1"></div>
<div class="t r cell" id="2"></div>
<div class="m l cell" id="3"></div>
<div class="m c cell" id="4"></div>
<div class="m r cell" id="5"></div>
<div class="b l cell" id="6"></div>
<div class="b c cell" id="7"></div>
<div class="b r cell" id="8"></div>
</div>
<div id='this-game' float='top'>
Quick link to this game: <span id='this-game-link'><a href='{{ game_link }}'>{{ game_link }}</a></span>
<div id="this-game" float="top">
Quick link to this game: <span id="this-game-link"><a href="{{ game_link }}">{{ game_link }}</a></span>
</div>
</div>
</body>
Expand Down