Skip to content

Commit

Permalink
Added docs - v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
denissdubinin committed Sep 8, 2018
1 parent 6c063dc commit 5e4d97c
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
Binary file added docs/assets/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions docs/assets/jquery.confetti.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 52 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Sudoku game that is built on Javascript">
<meta name="author" content="Deniss Dubinin">
<title>Javascript Sudoku | &copy; Deniss Dubinin</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/denissdubinin/javascript-sudoku@latest/dist/sudoku.min.css">
<link rel="icon" href="assets/favicon.ico">
</head>

<body>
<style>#confettiCanvas {pointer-events: none;}</style>
<a href="https://github.com/denissdubinin/javascript-sudoku">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 99;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub">
</a>
<main role="main">
<div class="container">
<div class="mt-3 mb-5">
<h1 class="text-primary text-center">SUDOKU</h1>
<div id="sudoku-example"></div>
</div>
</div>
</main>

<footer class="text-muted">
<div class="container text-center">
<p>
<small>Made by <b><a href="https://github.com/denissdubinin" target="-_blank">@Deniss Dubinin</a></b> | &copy; 2018 </small>
</p>
</div>
</footer>

<script src="https://cdn.jsdelivr.net/gh/jquery/[email protected]/dist/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/gh/denissdubinin/javascript-sudoku@latest/dist/sudoku.min.js"></script>
<script src="assets/jquery.confetti.min.js"></script>

<script>
$(document).ready(function() {
$('#sudoku-example').Sudoku({
markWrongCellsOnFly: true
});
});
</script>
</body>

</html>

0 comments on commit 5e4d97c

Please sign in to comment.