Repository: ambari Updated Branches: refs/heads/branch-feature-AMBARI-18634 cfe738d4b -> f9814d2bf
AMBARI-18752 Popover dialog displays raw html instead of rendering it (Vivek Ratnavel Subramanian via zhewang) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/43d48571 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/43d48571 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/43d48571 Branch: refs/heads/branch-feature-AMBARI-18634 Commit: 43d4857155f59e30c967b96dcd91b0224c2f214b Parents: 464d3d5 Author: Zhe (Joe) Wang <[email protected]> Authored: Tue Nov 1 17:38:50 2016 -0700 Committer: Zhe (Joe) Wang <[email protected]> Committed: Tue Nov 1 17:38:50 2016 -0700 ---------------------------------------------------------------------- ambari-web/app/utils/helper.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/43d48571/ambari-web/app/utils/helper.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/utils/helper.js b/ambari-web/app/utils/helper.js index 52dcd23..18cdedc 100644 --- a/ambari-web/app/utils/helper.js +++ b/ambari-web/app/utils/helper.js @@ -759,7 +759,8 @@ App.format = { */ App.popover = function (self, options) { var opts = $.extend(true, { - container: 'body' + container: 'body', + html: true }, options || {}); if (!self) return; self.popover(opts);
