1
0
mirror of https://github.com/flarum/core.git synced 2025-08-02 06:30:53 +02:00

Merge pull request #735 from bogdanteodoru/master

#679 Ask for confirmation before "Mark all as Read"
This commit is contained in:
Toby Zerner
2016-01-12 17:09:26 +10:30

View File

@@ -358,6 +358,10 @@ export default class IndexPage extends Page {
* @return void * @return void
*/ */
markAllAsRead() { markAllAsRead() {
const confirmation = confirm(app.translator.trans('core.forum.index.mark_all_as_read_confirmation'));
if (confirmation) {
app.session.user.save({readTime: new Date()}); app.session.user.save({readTime: new Date()});
} }
} }
}