mirror of
https://github.com/flarum/core.git
synced 2025-07-20 08:11:27 +02:00
Merge pull request #7 from Push-EDX/unbind-fixes
Unbind only from newPost
This commit is contained in:
4
extensions/pusher/js/forum/dist/extension.js
vendored
4
extensions/pusher/js/forum/dist/extension.js
vendored
@@ -74,7 +74,7 @@ System.register('flarum/pusher/main', ['flarum/extend', 'flarum/app', 'flarum/co
|
|||||||
});
|
});
|
||||||
|
|
||||||
extend(context, 'onunload', function () {
|
extend(context, 'onunload', function () {
|
||||||
return channels.main.unbind();
|
return channels.main.unbind('newPost');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -151,7 +151,7 @@ System.register('flarum/pusher/main', ['flarum/extend', 'flarum/app', 'flarum/co
|
|||||||
});
|
});
|
||||||
|
|
||||||
extend(context, 'onunload', function () {
|
extend(context, 'onunload', function () {
|
||||||
return channels.main.unbind();
|
return channels.main.unbind('newPost');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@@ -58,7 +58,7 @@ app.initializers.add('flarum-pusher', () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
extend(context, 'onunload', () => channels.main.unbind());
|
extend(context, 'onunload', () => channels.main.unbind('newPost'));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -127,7 +127,7 @@ app.initializers.add('flarum-pusher', () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
extend(context, 'onunload', () => channels.main.unbind());
|
extend(context, 'onunload', () => channels.main.unbind('newPost'));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user