mirror of
https://github.com/flarum/framework.git
synced 2024-11-28 11:34:36 +08:00
Merge pull request #735 from bogdanteodoru/master
#679 Ask for confirmation before "Mark all as Read"
This commit is contained in:
commit
98ea4d1e71
|
@ -358,6 +358,10 @@ export default class IndexPage extends Page {
|
|||
* @return void
|
||||
*/
|
||||
markAllAsRead() {
|
||||
app.session.user.save({readTime: new Date()});
|
||||
const confirmation = confirm(app.translator.trans('core.forum.index.mark_all_as_read_confirmation'));
|
||||
|
||||
if (confirmation) {
|
||||
app.session.user.save({readTime: new Date()});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user