I want to show a line break in the title of the ionic action sheet
At present it looks like
There are employee associated with task. Delete task some task?
I want it to look like
There are employee associated with task.
Delete task some task?
I have used and \n and actually putting a line break but none is working.
if (employees && employees.length > 0)
employeeAssociatedWithTask = ‘There are employees associated to the Task.\n’;
$ionicActionSheet.show({
destructiveText: 'Delete',
titleText: employeeAssociatedWithTask + 'Delete Task ' + task.Name + '?',
cancelText: 'Cancel',
destructiveButtonClicked: function () {
svcTasks.deleteTask(vm.task.Id).then(function () {
refreshTasks();
});
return true;
}
});