From 948ebf220128a79e9e33aae0799fbcf0f09045ae Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Sun, 11 May 2014 15:39:00 -0400 Subject: [PATCH] FIX: Modals weren't closing when routing to raw links --- app/assets/javascripts/discourse/routes/discourse_route.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/routes/discourse_route.js b/app/assets/javascripts/discourse/routes/discourse_route.js index ceade553f7c..33c2ea6ef72 100644 --- a/app/assets/javascripts/discourse/routes/discourse_route.js +++ b/app/assets/javascripts/discourse/routes/discourse_route.js @@ -57,7 +57,7 @@ Discourse.Route.reopenClass({ $(document.activeElement).blur(); Discourse.set('notifyCount',0); - + $('#discourse-modal').modal('hide'); var hideDropDownFunction = $('html').data('hide-dropdown'); if (hideDropDownFunction) { hideDropDownFunction(); } },