From 0de88203dabb91407d3fead065447fbde86e9701 Mon Sep 17 00:00:00 2001 From: rolux Date: Mon, 3 Oct 2011 00:19:38 +0000 Subject: [PATCH] fix a bug where the sign up/sign in dialog button would not get enabled --- static/js/pandora/URL.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/pandora/URL.js b/static/js/pandora/URL.js index 2896ccef..07a569d7 100644 --- a/static/js/pandora/URL.js +++ b/static/js/pandora/URL.js @@ -116,7 +116,7 @@ pandora.URL = (function() { pandora.$ui.helpDialog = pandora.ui.helpDialog().open(); } else if (['signup', 'signin'].indexOf(state.page) > -1) { if (pandora.user.level == 'guest') { - pandora.ui.accountDialog(state.page).open(); + pandora.$ui.accountDialog = pandora.ui.accountDialog(state.page).open(); } else { pandora.URL.replace('/'); }