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
commit 920b34c11b
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');
});
});
});
@ -175,4 +175,4 @@ System.register('flarum/pusher/main', ['flarum/extend', 'flarum/app', 'flarum/co
});
}
};
});
});

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