From 726c52191b687252d447dd92122f74653c3271b8 Mon Sep 17 00:00:00 2001 From: Steven Thomas Date: Thu, 20 Mar 2014 09:12:42 -0700 Subject: Fixed spelling - renamed wordseach occurrences to wordsearch. --- README.html | 15 +++++++++++++++ css/wordseach.css | 28 ---------------------------- css/wordseach.min.css | 1 - css/wordsearch.css | 28 ++++++++++++++++++++++++++++ css/wordsearch.min.css | 1 + index.html | 4 ++-- js/utility.min.js | 2 +- js/wordsearch.js | 34 +++++++++++++++++----------------- js/wordsearch.min.js | 2 +- 9 files changed, 65 insertions(+), 50 deletions(-) create mode 100644 README.html delete mode 100644 css/wordseach.css delete mode 100644 css/wordseach.min.css create mode 100644 css/wordsearch.css create mode 100644 css/wordsearch.min.css diff --git a/README.html b/README.html new file mode 100644 index 0000000..40f3a9f --- /dev/null +++ b/README.html @@ -0,0 +1,15 @@ +

Word search game

+

A word game which programming with HTML5 and Javascript.

+

Requirment

+ +

License

+

The MIT License (MIT)

+

Copyright (c) 2013 Li Zhineng <lizhineng@gmail.com> and other word-search-game contributors

+

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

+

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

+

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

diff --git a/css/wordseach.css b/css/wordseach.css deleted file mode 100644 index 4f13702..0000000 --- a/css/wordseach.css +++ /dev/null @@ -1,28 +0,0 @@ -/* Wordseach */ - -.ws-area { - background: #fafafa; - display: inline-block; - padding: 20px; - border-radius: 10px; - -moz-user-select: -moz-none; - -khtml-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; -} - -.ws-row { - line-height: 0; -} - -.ws-col { - cursor: pointer; -} - -.ws-col.ws-selected { - background: #eee; -} - -.ws-found { - background: yellow; -} \ No newline at end of file diff --git a/css/wordseach.min.css b/css/wordseach.min.css deleted file mode 100644 index ac2f261..0000000 --- a/css/wordseach.min.css +++ /dev/null @@ -1 +0,0 @@ -.ws-area{background:#fafafa;display:inline-block;padding:20px;border-radius:10px;-moz-user-select:-moz-none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.ws-row{line-height:0}.ws-col{cursor:pointer}.ws-col.ws-selected{background:#eee}.ws-found{background:yellow} \ No newline at end of file diff --git a/css/wordsearch.css b/css/wordsearch.css new file mode 100644 index 0000000..02853f0 --- /dev/null +++ b/css/wordsearch.css @@ -0,0 +1,28 @@ +/* Wordsearch */ + +.ws-area { + background: #fafafa; + display: inline-block; + padding: 20px; + border-radius: 10px; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; +} + +.ws-row { + line-height: 0; +} + +.ws-col { + cursor: pointer; +} + +.ws-col.ws-selected { + background: #eee; +} + +.ws-found { + background: yellow; +} \ No newline at end of file diff --git a/css/wordsearch.min.css b/css/wordsearch.min.css new file mode 100644 index 0000000..ac2f261 --- /dev/null +++ b/css/wordsearch.min.css @@ -0,0 +1 @@ +.ws-area{background:#fafafa;display:inline-block;padding:20px;border-radius:10px;-moz-user-select:-moz-none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.ws-row{line-height:0}.ws-col{cursor:pointer}.ws-col.ws-selected{background:#eee}.ws-found{background:yellow} \ No newline at end of file diff --git a/index.html b/index.html index 80facb7..7f8fc44 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ Word search game - + @@ -17,7 +17,7 @@