andreoupanagiotis / jquery-wordsearch-game

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

Now working on after rotating touch devices like iPad/iPhone/Samsung Tab #11

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What is the expected output? What do you see instead?

 Its work fine in normal cases.. if we rotate the orientation of touch     devices, It wont work.. dragging didn't works here..

Original issue reported on code.google.com by 1289abhi...@gmail.com on 13 Mar 2014 at 5:15

GoogleCodeExporter commented 9 years ago
When you rotate the demo, the game takes 100% of the screen and I cannot move 
around the rest of the page.

Original comment by nachitox...@gmail.com on 18 Mar 2014 at 7:52

GoogleCodeExporter commented 9 years ago
I overcome this issue by adding a little code.

$(window).resize($.proxy(function(e){
  this._cellX = cell.offset().left;
  this._cellY = cell.offset().top;
},this));

Original comment by 1289abhi...@gmail.com on 19 Mar 2014 at 5:33