X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=js%2FCommon.js;h=43cc526b7213c192b4d2e000f7634bbe9720f7b6;hb=e58304414d806b7dcc102880a47becd0a896dc17;hp=691df6c15e222b651ce25c73fe6e1aa073c3e41e;hpb=43a6933288a9d6d27f5746b00618d6c751e90263;p=civicrm-core.git diff --git a/js/Common.js b/js/Common.js index 691df6c15e..43cc526b72 100644 --- a/js/Common.js +++ b/js/Common.js @@ -1260,7 +1260,8 @@ if (!CRM.vars) CRM.vars = {}; if (title.length) { text = title + "\n" + text; } - alert(text); + // strip html tags as they are not parsed in standard alerts + alert($("
").html(text).text()); return null; } }; @@ -1592,6 +1593,10 @@ if (!CRM.vars) CRM.vars = {}; return format.replace(/1.*234.*56/, result); }; + CRM.angRequires = function(name) { + return CRM.angular.requires[name] || []; + }; + CRM.console = function(method, title, msg) { if (window.console) { method = $.isFunction(console[method]) ? method : 'log';