Skip to content

Commit 6fc35d1

Browse files
committed
Detect window.removeEventListener
1 parent a1c1a3a commit 6fc35d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/stores/URLStore.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ var URLStore = {
139139
if (location === 'hash' && window.location.hash === '')
140140
URLStore.replace('/');
141141

142-
if (window.addEventListener) { //check for IE 8
142+
if (window.addEventListener) {
143143
window.addEventListener(changeEvent, notifyChange, false);
144144
} else {
145145
window.attachEvent(changeEvent, notifyChange);
@@ -157,7 +157,7 @@ var URLStore = {
157157

158158
var changeEvent = CHANGE_EVENTS[_location];
159159

160-
if (window.addEventListener) {
160+
if (window.removeEventListener) {
161161
window.removeEventListener(changeEvent, notifyChange, false);
162162
} else {
163163
window.detachEvent(changeEvent, notifyChange);

0 commit comments

Comments
 (0)