Removed <br>

This commit is contained in:
Tobias Reich 2015-05-06 20:00:10 +02:00
parent 1bbe3bd3dc
commit 4299ab5b89
2 changed files with 2 additions and 2 deletions

BIN
dist/main.js vendored

Binary file not shown.

View File

@ -252,14 +252,14 @@ photo.delete = function(photoIDs) {
action.title = 'Delete Photo';
cancel.title = 'Keep Photo';
msg = "<p>Are you sure you want to delete the photo '" + photoTitle + "'?<br>This action can't be undone!</p>";
msg = "<p>Are you sure you want to delete the photo '" + photoTitle + "'? This action can't be undone!</p>";
} else {
action.title = 'Delete Photo';
cancel.title = 'Keep Photo';
msg = "<p>Are you sure you want to delete all " + photoIDs.length + " selected photo?<br>This action can't be undone!</p>";
msg = "<p>Are you sure you want to delete all " + photoIDs.length + " selected photo? This action can't be undone!</p>";
}