Browse Source

Fix #1038 in 1.0

pull/1063/head
jlukic 10 years ago
parent
commit
07c8b4e719
1 changed files with 1 additions and 1 deletions
  1. 2
      src/definitions/modules/popup.js

2
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 += '<div class="header">' + text.title + '</div class="header">';
html += '<div class="header">' + text.title + '</div>';
}
if(typeof text.content !== undefined && text.content) {
text.content = escape(text.content);

Loading…
Cancel
Save