From 4a84aecb9f2767d9cb2598bba65ff55a077b1aee Mon Sep 17 00:00:00 2001 From: Angie Byron <webchick@24967.no-reply.drupal.org> Date: Sat, 30 Jan 2010 04:45:17 +0000 Subject: [PATCH] #678472 by casey: Fixed Dashboard's Done button doesn't redirect in Google Chrome. --- modules/dashboard/dashboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/dashboard/dashboard.js b/modules/dashboard/dashboard.js index db9c695f4c88..e1fd13e80d69 100644 --- a/modules/dashboard/dashboard.js +++ b/modules/dashboard/dashboard.js @@ -66,7 +66,7 @@ Drupal.behaviors.dashboard = { */ setupDrawer: function () { $('div.customize .canvas-content input').click(Drupal.behaviors.dashboard.exitCustomizeMode); - $('div.customize .canvas-content').append('<a class="button" href="">' + Drupal.t('Done') + '</a>'); + $('div.customize .canvas-content').append('<a class="button" href="' + Drupal.settings.dashboard.dashboard + '">' + Drupal.t('Done') + '</a>'); // Initialize drag-and-drop. var regions = $('#dashboard div.region'); -- GitLab