This commit is contained in:
Peli de Halleux 2015-11-12 13:47:31 -08:00
Родитель aecfc8a032 b9452da511
Коммит ccf79cb0e7
2 изменённых файлов: 12 добавлений и 4 удалений

Просмотреть файл

@ -4856,11 +4856,19 @@
{
var c = <JsonAbuseReport>cc;
var confirmed = false;
var del = () => AbuseReportInfo.deletePubAsync(c.publicationid)
.then(v => { if (v) delBtn.removeSelf() })
var delBtn =
HTML.mkAsyncButton(lf("delete"), () => {
if (confirmed) {
return AbuseReportInfo.deletePubAsync(c.publicationid)
.then(v => { if (v) delBtn.removeSelf() })
if (Cloud.isRestricted()) {
ModalDialog.ask(lf("Are you sure you want to delete '{0}' /{1}? No undo.", c.publicationname, c.publicationid),
lf("delete"),
() => {
del().done();
})
return Promise.as();
} else if (confirmed) {
return del();
} else {
delBtn.setChildren(lf("for sure?"))
confirmed = true

Просмотреть файл

@ -148,7 +148,7 @@ input.logSearchInput {
top: 0;
width: 100%;
height: 100%;
z-index:0;
z-index:1;
}
.modalMessage {