Last active
August 29, 2015 14:18
-
-
Save markjarzynski/8dbe7f4d2fe62cec94e9 to your computer and use it in GitHub Desktop.
Revisions
-
markjarzynski revised this gist
Apr 9, 2015 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ // http://www.kuku-kube.com // http://106.186.25.143/kuku-kube/en-3/ function cheat () { -
markjarzynski revised this gist
Apr 9, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,6 +14,6 @@ function cheat () { requestAnimationFrame( cheat ); } document.querySelector(".play-btn").click(); cheat(); -
markjarzynski revised this gist
Apr 9, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,6 +14,6 @@ function cheat () { requestAnimationFrame( cheat ); } document.querySelector(".btn .play-btn").click(); cheat(); -
markjarzynski revised this gist
Apr 9, 2015 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,5 +12,8 @@ function cheat () { }; requestAnimationFrame( cheat ); } document.querySelector("btn play-btn").click(); cheat(); -
markjarzynski revised this gist
Apr 9, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ function cheat () { x[0].click(); for( var i = 1; i < x.length; i++ ) { if ( x[i].style.backgroundColor != x[0].style.backgroundColor) { x[i].click(); } -
markjarzynski revised this gist
Apr 9, 2015 . 1 changed file with 9 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,14 @@ // http://106.186.25.143/kuku-kube/en-3/ function cheat () { var x = document.querySelectorAll("#box span"); x[0].click(); for( var i = 1; i < i.length; i++ ) { if ( x[i].style.backgroundColor != x[0].style.backgroundColor) { x[i].click(); } }; requestAnimationFrame( cheat ); -
markjarzynski renamed this gist
Apr 9, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
markjarzynski created this gist
Apr 9, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ // http://106.186.25.143/kuku-kube/en-3/ function cheat () { var i = document.querySelectorAll("#box span"); for( var x = 0; x < i.length; x++ ) { if ( i[x].style.backgroundColor != i[0].style.backgroundColor) { i[x].style.border = "10px magenta solid"; i[x].style.backgroundColor = "black"; } }; requestAnimationFrame( cheat ); } cheat();