Sized delete comment dialog

This commit is contained in:
Fergal Moran
2016-06-29 18:48:44 +01:00
parent ab2420f616
commit cc39b89d56

View File

@@ -32,7 +32,7 @@ angular.module('dssWebApp')
var dlg = dialogs.create('app/dialogs/confirm/confirmDialog.html', 'confirmDialogCtrl', {
title: 'You sure chief?',
body: 'Delete this comment?'
});
}, { size: "sm"});
dlg.result.then(function (result) {
if (result) {
CommentModel.destroy(comment.id).then(function (item) {