Git Product home page Git Product logo

jquery-wordsearch-game's People

Contributors

chepe263 avatar ryanscode avatar

Watchers

James Cloos avatar  avatar

jquery-wordsearch-game's Issues

On the list white space instead of word

What steps will reproduce the problem?
1. put long or to much words
2. reduce gridsize

What is the expected output? What do you see instead?
Sometimes in the list appear a white space instead of a word. I think that 
occurs when can't put the word in the grid. If reload the page new letters 
appears in the grid and usually it work. There is a way to try with another new 
grid if they can't put the word?
Thanks!

What version of the product are you using? On what operating system?
Version = jquery.wordsearchgame.touch-1.1.
OS = Windows

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 6 Mar 2015 at 4:26

Defect

What steps will reproduce the problem?
1. Using backbone to fill div as a model
2. Highlighting word
3.

What is the expected output? What do you see instead?
Word get Highligted correctly

What version of the product are you using? On what operating system?


Please provide any additional information below.

   _mouseStop : function (event) {

                //get word
                var selectedword = '';
                $('.rf-glowing, .rf-highlight', this.element[0]).each(function() {
Uncaught TypeError: Cannot read property 'element' of undefined
                        var u = $.data(this,"cell");
                        selectedword += u.value;
                });

$.data(this,"cell") is undefined

Original issue reported on code.google.com by [email protected] on 6 Apr 2013 at 4:22

Problem with other <li> on the page

What steps will reproduce the problem?
1. Have other <li> on the page
2.
3.

What is the expected output? What do you see instead?
Expected - When a word is found it gets "Crossed Off" the list
Instead - However many <li> you have before theGrid will be the offset.

Please provide any additional information below.
To fix change line 1298 to var w = $("#theGrid li").get(idx);

Original issue reported on code.google.com by [email protected] on 9 Nov 2012 at 11:31

Jquery 1.8.3 incompatibility

I need to use Jquery version 1.8.3, but I'm getting the errors:

Uncaught Error: Syntax error, unrecognized expression: :nth-child 
jquery.min.js:2

nt.error jquery.min.js:2

nt.selectors.preFilter.CHILD jquery.min.js:2

ut jquery.min.js:2

vt jquery.min.js:2

g.querySelectorAll.vt jquery.min.js:2

nt jquery.min.js:2

v.fn.extend.find jquery.min.js:2

v.fn.v.init jquery.min.js:2

v jquery.min.js:2

$.widget._mapEventToCell jquery.wordsearchgame.js:96

$.widget._mouseDrag jquery.wordsearchgame.js:154

b.widget._mouseMove jquery-ui-1.8.16.custom.min.js:49

_mouseMoveDelegate jquery-ui-1.8.16.custom.min.js:48

v.event.dispatch jquery.min.js:2

o.handle.u jquery.min.js:2


--
I'm not good this javascript, any help would be highly appreciated. 

Original issue reported on code.google.com by [email protected] on 11 Aug 2013 at 4:33

How can I make this game to remember its state?

What steps will reproduce the problem?
1. Start the game
2. Find few words in grid and highlight it
3. Refresh the screen.
4. A new grid comes and the current progress is lost.

What is the expected output? What do you see instead?
The expected output is to preserve the state and show the contents as it is 
even after refresh.

What version of the product are you using? On what operating system?
version: touch 1.1 on Mozilla firefox v37 on Windows 7.

Please provide any additional information below.
Though this is not an issue/bug, we would like to have a game of this 
capability. Can you kindly add information on this thread about where to modify 
the code to make it remember its state and survive a refresh.

Thanks.

Original issue reported on code.google.com by [email protected] on 3 Apr 2015 at 11:30

glow issue on root and hotzone item when dragging arm within same row

What steps will reproduce the problem?
1. select any letter not on the edges (i.e., from center) on a horizontal row 
and drag
2. release mouse button
3. select a letter to the left or right of the one selected in (1), on the same 
row
4. drag from new root

What is the expected output? What do you see instead?

a full glow should appear from root including hotzone, but instead neither the 
root nor the respective hotzone are glowing

What version of the product are you using? On what operating system?

1.1 on OSX

Please provide any additional information below.

I have gone through the code and found and fixed this issue:

1) line 312 reads: for (var x=1;x<this.arms.length;x++)
this should be: for (var x=0;x<this.arms.length;x++) // also glow the hotzone 
letter through the arm

2) the glow on the selected item should never be cleared when dragging the arm; 
to correct this I have created two new functions, glowRoot and restoreRoot, 
along with a new CSS property "rf-glowing-root" to color the root letter in 
pink and fix the issues noted above

3) lastly I have verified and fixed existing issue 4 that was present in 1.1: 
https://code.google.com/p/jquery-wordsearch-game/issues/detail?id=4

The updated code is attached.

Best,

David

Original issue reported on code.google.com by [email protected] on 6 Jun 2013 at 12:21

lack of an event that detects the end of the game

I have a concern, there is an event that allows me to perform an action when 
all words are selected? Would greatly appreciate any help, I'm not a programmer 
but it seems something that should be part of the plugin. Thank you.


Original issue reported on code.google.com by [email protected] on 5 Oct 2012 at 2:41

should support utf-8 characters

What steps will reproduce the problem?
1. doesnot support german characters
2. try word heißt
3. shows as heisst

What is the expected output? What do you see instead?
expected output heißt shows heisst

What version of the product are you using? On what operating system?
touch1.1

Please provide any additional information below.
any other language like chinese, japanese, german , spanish,  can be supported 
, some thing like accent folding in jquery can be used for utf-8 characters

Original issue reported on code.google.com by [email protected] on 17 May 2015 at 6:19

How to load this script dynamically??

What is the expected output? What do you see instead?

I want to load the <div id="theGrid"?</div> dynamically on my choice. It works 
fine, if I load it on document.ready(). How it will be load on my own choice?

What version of the product are you using? On what operating system?
Version 1.1 on Windows-XP

Please provide any additional information below.


I'm trying to embed this code on my project. I'm getting issues while loading 
this word search dynamically. 

Original issue reported on code.google.com by [email protected] on 31 Jan 2014 at 7:32

Misspelled letter in grid

Some times the list of word don't match word in grid or it is mis-spelled. Pl 
check the attached screenshot.
Red mark line is shown in image. 

That word doesn't match with list. how to get rid of this error??

Thanks

Original issue reported on code.google.com by [email protected] on 29 Oct 2013 at 10:37

Attachments:

Word selections fails on page zoom

Firefox 27.0.1

What steps will reproduce the problem?
1. Load word search widget (initialized)
2. Change zoom using CTRL + Mouse scroll OR CRTL + -/+
3. Start selection a word
4. Selection behaves weird

What is the expected output? What do you see instead?
Squared letters get hightlighted when mouse is over

Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 19 Mar 2014 at 9:33

li index in rf-wordcontainer is wrong

line 1307 should take the rf-wordcontainer in account:
 var w = $("li").get(idx);
should be:
var w = $("#rf-wordcontainer li").get(idx);

otherwise your index won´t be correct if there are any other li elements on 
the site...

Original issue reported on code.google.com by [email protected] on 3 Apr 2013 at 8:53

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.