We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1c1a3a commit 6fc35d1Copy full SHA for 6fc35d1
modules/stores/URLStore.js
@@ -139,7 +139,7 @@ var URLStore = {
139
if (location === 'hash' && window.location.hash === '')
140
URLStore.replace('/');
141
142
- if (window.addEventListener) { //check for IE 8
+ if (window.addEventListener) {
143
window.addEventListener(changeEvent, notifyChange, false);
144
} else {
145
window.attachEvent(changeEvent, notifyChange);
@@ -157,7 +157,7 @@ var URLStore = {
157
158
var changeEvent = CHANGE_EVENTS[_location];
159
160
- if (window.addEventListener) {
+ if (window.removeEventListener) {
161
window.removeEventListener(changeEvent, notifyChange, false);
162
163
window.detachEvent(changeEvent, notifyChange);
0 commit comments