Browse Source

fix popup template for header

pull/1038/head
Corey Farrell 10 years ago
parent
commit
86396a6be8
2 changed files with 2 additions and 2 deletions
  1. 2
      rtl/uncompressed/modules/popup.js
  2. 2
      src/modules/popup.js

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

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

Loading…
Cancel
Save