andreoupanagiotis / jquery-wordsearch-game

Automatically exported from code.google.com/p/jquery-wordsearch-game
MIT License
0 stars 0 forks source link

Defect #5

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
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 t...@hinch.as on 6 Apr 2013 at 4:22