From cc39b89d56ff24f3a7d0884194cb1aec2c2cacca Mon Sep 17 00:00:00 2001 From: Fergal Moran Date: Wed, 29 Jun 2016 18:48:44 +0100 Subject: [PATCH] Sized delete comment dialog --- client/app/components/comments/comments.directive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/components/comments/comments.directive.js b/client/app/components/comments/comments.directive.js index 4c62212..d18a233 100755 --- a/client/app/components/comments/comments.directive.js +++ b/client/app/components/comments/comments.directive.js @@ -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) {