From 86396a6be8f460d1cce23fefc69c855b5e74d545 Mon Sep 17 00:00:00 2001 From: Corey Farrell Date: Tue, 26 Aug 2014 14:34:20 -0400 Subject: [PATCH] fix popup template for header --- rtl/uncompressed/modules/popup.js | 2 +- src/modules/popup.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rtl/uncompressed/modules/popup.js b/rtl/uncompressed/modules/popup.js index 78397528a..c75738995 100644 --- a/rtl/uncompressed/modules/popup.js +++ b/rtl/uncompressed/modules/popup.js @@ -845,7 +845,7 @@ $.fn.popup.settings = { var html = ''; if(typeof text !== undefined) { if(typeof text.title !== undefined && text.title) { - html += '
' + text.title + '
'; + html += '
' + text.title + '
'; } if(typeof text.content !== undefined && text.content) { html += '
' + text.content + '
'; diff --git a/src/modules/popup.js b/src/modules/popup.js index 78397528a..c75738995 100755 --- a/src/modules/popup.js +++ b/src/modules/popup.js @@ -845,7 +845,7 @@ $.fn.popup.settings = { var html = ''; if(typeof text !== undefined) { if(typeof text.title !== undefined && text.title) { - html += '
' + text.title + '
'; + html += '
' + text.title + '
'; } if(typeof text.content !== undefined && text.content) { html += '
' + text.content + '
';