Skip to content

Commit

Permalink
Merge pull request civicrm#5 from colemanw/dashboard
Browse files Browse the repository at this point in the history
Fix dashboard popups CRM-12239
  • Loading branch information
totten committed Mar 29, 2013
2 parents 928e5f0 + 0a2a5c6 commit fd4eed6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jquery/plugins/jquery.dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@
}

$('<div id="crm-dashlet-container"></div>')
.html('<div id="crm-container"><div id="crm-dashlet-fullscreen-content">Loading...</div></div>')
.html('<div class="crm-container"><div id="crm-dashlet-fullscreen-content">Loading...</div></div>')
.dialog({
autoOpen: true,
title: widget.title,
Expand All @@ -431,7 +431,7 @@
$.ajax({
url: widget.fullscreenUrl,
success: function ( content ) {
$('#crm-dashlet-fullscreen-content').html( content );
$('#crm-dashlet-fullscreen-content').html(content).crmAccordions();
}
});
};
Expand Down Expand Up @@ -638,4 +638,4 @@
fullscreen: false
}
};
})(jQuery); // end of closure
})(jQuery);

0 comments on commit fd4eed6

Please sign in to comment.