summaryrefslogtreecommitdiff
path: root/modules/dashboard/dashboard.js
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-30 04:45:17 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-30 04:45:17 +0000
commit4a84aecb9f2767d9cb2598bba65ff55a077b1aee (patch)
tree4d904266c8ad833ad9ff401c04efcbe026d20f78 /modules/dashboard/dashboard.js
parent8979414a45459226e9c7ac333c23a44755a58945 (diff)
downloadbrdo-4a84aecb9f2767d9cb2598bba65ff55a077b1aee.tar.gz
brdo-4a84aecb9f2767d9cb2598bba65ff55a077b1aee.tar.bz2
#678472 by casey: Fixed Dashboard's Done button doesn't redirect in Google Chrome.
Diffstat (limited to 'modules/dashboard/dashboard.js')
-rw-r--r--modules/dashboard/dashboard.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dashboard/dashboard.js b/modules/dashboard/dashboard.js
index db9c695f4..e1fd13e80 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');