1
0
mirror of https://github.com/flarum/core.git synced 2025-07-20 00:01:17 +02:00

Merge pull request #7 from Push-EDX/unbind-fixes

Unbind only from newPost
This commit is contained in:
Franz Liedke
2016-05-14 16:16:29 +09:00
2 changed files with 5 additions and 5 deletions

View File

@@ -74,7 +74,7 @@ System.register('flarum/pusher/main', ['flarum/extend', 'flarum/app', 'flarum/co
});
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 () {
return channels.main.unbind();
return channels.main.unbind('newPost');
});
});
});

View File

@@ -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'));
});
});