diff --git a/docs/client/layout.js b/docs/client/layout.js index 609dfdfa17..a95faeb259 100644 --- a/docs/client/layout.js +++ b/docs/client/layout.js @@ -5,7 +5,7 @@ Template.registerHelper("layoutHidden", function (type) { Template.basicOrFullSelect.events({ "change .basic-or-full": function (event) { // XXX might not work in IE9? - navigate("#/" + event.target.value + "/"); + window.location.hash = "#/" + event.target.value + "/"; } });