Removed popover from delete messages button. (for #4848)

This commit is contained in:
Kathryn Norris 2015-03-13 05:05:54 -07:00
parent 47a05338e5
commit 9d92bd384c
2 changed files with 2 additions and 2 deletions

View file

@ -80,7 +80,7 @@
"send": "Send",
"messageSentAlert": "Message sent",
"pmHeading": "Private message to <%= name %>",
"deleteAllMessages": "Delete All Messages",
"clearAll": "Delete All Messages",
"confirmDeleteAllMessages": "Are you sure you want to delete all messages in your inbox? Other users will still see messages you have sent to them.",
"optOutPopover": "Don't like private messages? Click to completely opt out",
"block": "Block",

View file

@ -11,7 +11,7 @@ script(type='text/ng-template', id='partials/options.social.inbox.html')
.row
.col-md-12
.form-inline
a.btn.btn-xs.btn-danger(popover=env.t('deleteAllMessages'), popover-trigger='mouseenter', ng-click='deleteAllMessages()', popover-placement='right')=env.t('deleteAllMessages')
a.btn.btn-xs.btn-danger(ng-click='deleteAllMessages()')=env.t('clearAll')
.checkbox
label
input(type='checkbox', ng-model='user.inbox.optOut', ng-change='set({"inbox.optOut": user.inbox.optOut?true: false})')