Browse Source

Remove html from Tags, Description and Title input

Tobias Reich 10 years ago
parent
commit
4bd77f8dbf
4 changed files with 31 additions and 1 deletions
  1. 12 1
      assets/js/album.js
  2. 8 0
      assets/js/lychee.js
  3. 11 0
      assets/js/photo.js
  4. 0 0
      assets/min/main.js

+ 12 - 1
assets/js/album.js

@@ -207,7 +207,14 @@ album = {
 		buttons = [
 			["Set Title", function() {
 
-				newTitle = ($(".message input.text").val()==="") ? "Untitled" : $(".message input.text").val();
+				// Get input
+				newTitle = $(".message input.text").val();
+
+				// Remove html from input
+				newTitle = lychee.removeHTML(newTitle);
+
+				// Set to Untitled when empty
+				newTitle = (newTitle==="") ? "Untitled" : newTitle;
 
 				if (visible.album()) {
 
@@ -249,8 +256,12 @@ album = {
 		buttons = [
 			["Set Description", function() {
 
+				// Get input
 				description = $(".message input.text").val();
 
+				// Remove html from input
+				description = lychee.removeHTML(description);
+
 				if (visible.album()) {
 					album.json.description = description;
 					view.album.description();

+ 8 - 0
assets/js/lychee.js

@@ -336,6 +336,14 @@ var lychee = {
 
 	},
 
+	removeHTML: function(html) {
+
+		var tmp = document.createElement("DIV");
+		tmp.innerHTML = html;
+		return tmp.textContent || tmp.innerText;
+
+	},
+
 	error: function(errorThrown, params, data) {
 
 		console.log("Error Description: " + errorThrown);

+ 11 - 0
assets/js/photo.js

@@ -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();

File diff suppressed because it is too large
+ 0 - 0
assets/min/main.js


Some files were not shown because too many files changed in this diff