Я хочу добавить разрыв строки в .textcontent из mdDiaglog. Ниже приведен мой код:
var confirm = $mdDialog.confirm()
.title('Refresh')
.textContent('Some information will be lost.'+'<br>'+ 'Do you want to refresh?')
.targetEvent(ev)
.ok('YES')
.cancel('NO');
$mdDialog.show(confirm).then(function () {
$window.location.reload();
});
}