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
<!DOCTYPE html> | |
<body> | |
<div id="newCards" > | |
<center> | |
Front:<input type="text" id="newFront" name="front"/> | |
Back: <input type="text" id="newBack" name="back"/> | |
<input value="Add" type="button" onclick="userEnter();"/> | |
</center> |
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
name: Connect 5 | |
description: Connect five pieces horizontally, vertically, or diagonally to win! | |
authors: | |
- Kevin Mo | |
resources: | |
- http://some.url.com/some/file.js | |
- http://other.url.com/other_filename.css | |
normalize_css: no | |
wrap: b | |
panel_js: 1 |
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
/* | |
* A complete connect 5 widget. Just include this script in a | |
* browser page and enjoy. A connect 5 game will be included | |
* as a child element of the element with id "connect5". If the | |
* page has no such element, it will just be added at the end of | |
* the body. | |
*/ | |
(function () { | |
var squares = [], //stores all pieces on the board |
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
$fullred: #ff0000; | |
body { | |
font-family: Helvetica, Verdana | |
} | |
p { | |
padding: 7px 10px; | |
} | |
#demo { | |
border: 1px solid $fullred; | |
} |
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 id="tictactoe"><span id="title">CONNECT 5</span><span id="subtext">Kevin Mo 2016</span></div> |