1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
--- ..//web-cache/www/https/raw.github.com/snaptortoise/konami-js/c0f686e647765860ff4d2fcb7b48122785432b75/konami.js 2015-04-14 17:46:09.372597458 -0400
+++ sitestatic/konami.js 2015-04-14 22:39:28.549281737 -0400
@@ -56,7 +56,7 @@
load: function(link){
this.orig_keys = this.keys;
konami.addEvent(document,"touchmove",function(e){
- if(e.touches.length == 1 && konami.iphone.capture==true){
+ if(e.touches.length == 1 && konami.iphone.capture===true){
var touch = e.touches[0];
konami.iphone.stop_x = touch.pageX;
konami.iphone.stop_y = touch.pageY;
@@ -66,7 +66,7 @@
}
});
konami.addEvent(document,"touchend",function(evt){
- if (konami.iphone.tap==true) konami.iphone.check_direction(link);
+ if (konami.iphone.tap===true) konami.iphone.check_direction(link);
},false);
konami.addEvent(document,"touchstart", function(evt){
konami.iphone.start_x = evt.changedTouches[0].pageX
@@ -76,12 +76,12 @@
});
},
check_direction: function(link){
- x_magnitude = Math.abs(this.start_x-this.stop_x)
- y_magnitude = Math.abs(this.start_y-this.stop_y)
- x = ((this.start_x-this.stop_x) < 0) ? "RIGHT" : "LEFT";
- y = ((this.start_y-this.stop_y) < 0) ? "DOWN" : "UP";
- result = (x_magnitude > y_magnitude) ? x : y;
- result = (this.tap==true) ? "TAP" : result;
+ var x_magnitude = Math.abs(this.start_x-this.stop_x)
+ var y_magnitude = Math.abs(this.start_y-this.stop_y)
+ var x = ((this.start_x-this.stop_x) < 0) ? "RIGHT" : "LEFT";
+ var y = ((this.start_y-this.stop_y) < 0) ? "DOWN" : "UP";
+ var result = (x_magnitude > y_magnitude) ? x : y;
+ result = (this.tap===true) ? "TAP" : result;
if (result==this.keys[0]) this.keys = this.keys.slice(1,this.keys.length)
if (this.keys.length==0) {
@@ -99,4 +99,4 @@
}
return konami;
-}
\ No newline at end of file
+}
|