forked from alice0775/userChrome.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpatchForBug715838.uc.js
74 lines (68 loc) · 2.05 KB
/
patchForBug715838.uc.js
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// ==UserScript==
// @name patchForBug715838.uc.js
// @namespace http://space.geocities.yahoo.co.jp/gl/alice0775
// @description Workaround Bug 715838 - Double-clicking title bar in small window sends click event to the maximized window on mouse position
// @include main
// @compatibility Firefox 4.0 5.0 6.0 7.0
// @author Alice0775
// @version 2012/01/07
// @Note
// ==/UserScript==
var bug715838 = {
timer: null,
duration: 500,
handleEvent: function(event) {
switch (event.type) {
case "mousemove":
this.onmousemove(event);
break;
case "resize":
this.onresize(event);
break;
case "mouseup":
this.onmouseup(event);
break;
case "unload":
this.uninit();
break;
}
},
init: function() {
window.addEventListener("unload", this, false);
window.addEventListener("resize", this, true);
},
uninit: function() {
window.removeEventListener("resize", this, true);
window.removeEventListener("unload", this, false);
},
onresize: function(event) {
if (event.originalTarget != window)
return;
if (window.windowState == window.STATE_MAXIMIZED) {
window.addEventListener("mouseup", this, true);
window.addEventListener("mousemove", this, true);
if (this.timer)
clearTimeout(this.timer);
this.timer = setTimeout(function(self) {
window.removeEventListener("mouseup", self, true);
window.removeEventListener("mousemove", self, true);
}, this.duration, this);
}
},
onmouseup: function(event) {
event.stopPropagation();
window.removeEventListener("mouseup", this, true);
window.removeEventListener("mousemove", this, true);
if (this.timer)
clearTimeout(this.timer);
},
onmousemove: function(event) {
window.removeEventListener("mousemove", this, true);
if (this.timer)
clearTimeout(this.timer);
setTimeout(function(self) {
window.removeEventListener("mouseup", self, true);
}, 0, this);
}
}
bug715838.init();