diff --git a/docs/client/docs.less b/docs/client/docs.less
index eb968260ba..e7b22a16ce 100644
--- a/docs/client/docs.less
+++ b/docs/client/docs.less
@@ -442,7 +442,7 @@ pre {
}
.logo {
- width: 90%;
+ width: 180px;
margin-bottom: 10px;
}
}
diff --git a/docs/client/layout.html b/docs/client/layout.html
index a9e04da839..d7a44328f1 100644
--- a/docs/client/layout.html
+++ b/docs/client/layout.html
@@ -33,7 +33,7 @@
diff --git a/docs/client/links.js b/docs/client/links.js
index 62d47fe3cf..89d3df8d82 100644
--- a/docs/client/links.js
+++ b/docs/client/links.js
@@ -28,16 +28,19 @@ Meteor.startup(function () {
var docsType = Session.get("fullApi") ? "full" : "basic";
Tracker.afterFlush(function () {
$.waypoints('destroy');
- $('.main-content [id]').each(function (i, el) {
- if (! $("#nav [href='#/" + docsType + '/' + el.id + "']").get(0)) {
- // only add waypoints to things that have sidebar links
- return;
- }
- $(el).waypoint(function() {
- updateUrlFromWaypoint(this);
- }, { context: $('.main-content') });
- });
+ setTimeout(function () {
+ $('.main-content [id]').each(function (i, el) {
+ if (! $("#nav [href='#/" + docsType + '/' + el.id + "']").get(0)) {
+ // only add waypoints to things that have sidebar links
+ return;
+ }
+
+ $(el).waypoint(function() {
+ updateUrlFromWaypoint(this);
+ }, { context: $('.main-content') });
+ });
+ }, 0);
});
});
});