|
@@ -207,8 +207,12 @@ photo = {
|
|
|
buttons = [
|
|
|
["Set Title", function() {
|
|
|
|
|
|
+ // Get input
|
|
|
newTitle = $(".message input.text").val();
|
|
|
|
|
|
+ // Remove html from input
|
|
|
+ newTitle = lychee.removeHTML(newTitle);
|
|
|
+
|
|
|
if (visible.photo()) {
|
|
|
photo.json.title = (newTitle==="") ? "Untitled" : newTitle;
|
|
|
view.photo.title();
|
|
@@ -337,8 +341,12 @@ photo = {
|
|
|
buttons = [
|
|
|
["Set Description", function() {
|
|
|
|
|
|
+ // Get input
|
|
|
description = $(".message input.text").val();
|
|
|
|
|
|
+ // Remove html from input
|
|
|
+ description = lychee.removeHTML(description);
|
|
|
+
|
|
|
if (visible.photo()) {
|
|
|
photo.json.description = description;
|
|
|
view.photo.description();
|
|
@@ -410,6 +418,9 @@ photo = {
|
|
|
tags = tags.replace(/(\ ,\ )|(\ ,)|(,\ )|(,{1,}\ {0,})|(,$|^,)/g, ',');
|
|
|
tags = tags.replace(/,$|^,|(\ ){0,}$/g, '');
|
|
|
|
|
|
+ // Remove html from input
|
|
|
+ tags = lychee.removeHTML(tags);
|
|
|
+
|
|
|
if (visible.photo()) {
|
|
|
photo.json.tags = tags;
|
|
|
view.photo.tags();
|