From 07c8b4e719c5c3b9a448ac580c3540a2ed8fcf83 Mon Sep 17 00:00:00 2001 From: jlukic Date: Tue, 26 Aug 2014 14:47:44 -0400 Subject: [PATCH] Fix #1038 in 1.0 --- src/definitions/modules/popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/definitions/modules/popup.js b/src/definitions/modules/popup.js index cb9dea6f5..57f8632a1 100755 --- a/src/definitions/modules/popup.js +++ b/src/definitions/modules/popup.js @@ -933,7 +933,7 @@ $.fn.popup.settings = { if(typeof text !== undefined) { if(typeof text.title !== undefined && text.title) { text.title = escape(text.title); - html += '
' + text.title + '
'; + html += '
' + text.title + '
'; } if(typeof text.content !== undefined && text.content) { text.content = escape(text.content);