From 08ca270b6572119177ff2812499009ce771bc1f7 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 4 Oct 2012 19:26:22 +0530 Subject: [PATCH] allow export of analytics reports to Report Manager or System Manager --- public/js/modules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/modules.js b/public/js/modules.js index 772a561f725..fb7775e0e1e 100644 --- a/public/js/modules.js +++ b/public/js/modules.js @@ -129,7 +129,7 @@ erpnext.module_page.hide_links = function(wrapper) { // pages $(wrapper).find('[data-role]').each(function() { // can define multiple roles - var data_roles = $(this).attr("data-role").split(",").map(function(role) { + var data_roles = $.map($(this).attr("data-role").split(","), function(role) { return role.trim(); }); if(!has_common(user_roles, ["System Manager"].concat(data_roles))) { var html = $(this).html();