diff --git a/articles/how-fleet-raised-a-27m-series-b-without-a-pitch-deck.md b/articles/how-fleet-raised-a-27m-series-b-without-a-pitch-deck.md index a62ffca73f..ccd225a97b 100644 --- a/articles/how-fleet-raised-a-27m-series-b-without-a-pitch-deck.md +++ b/articles/how-fleet-raised-a-27m-series-b-without-a-pitch-deck.md @@ -6,7 +6,11 @@ We still included charts, graphs, and key SaaS metrics like revenue growth, net The memo helped us raise $27 million in funding. Now that the round is public, we're sharing it in the spirit of openness and transparency for you to use as inspiration in your own projects. -[Read the memo](https://fleetdm.com/pdfs/fleet-series-b-memo.pdf) + + + +Read the memo + ## What's next for Fleet diff --git a/website/assets/js/pages/articles/basic-article.page.js b/website/assets/js/pages/articles/basic-article.page.js index 7f17f0daad..7451775943 100644 --- a/website/assets/js/pages/articles/basic-article.page.js +++ b/website/assets/js/pages/articles/basic-article.page.js @@ -8,6 +8,7 @@ parasails.registerPage('basic-article', { subtopics: [], lastScrollTop: 0, scrollDistance: 0, + isIpadOS: false, }, // ╦ ╦╔═╗╔═╗╔═╗╦ ╦╔═╗╦ ╔═╗ @@ -17,6 +18,10 @@ parasails.registerPage('basic-article', { //… }, mounted: async function() { + // Set a flag to determine whether or not this is an ipad. (Used to show/hide an embeded PDF) + if(navigator.maxTouchPoints > 1 && bowser.mac) { + this.isIpadOS = true; + } this.subtopics = (() => { let subtopics = $('[purpose="article-content"]').find('h2.markdown-heading').map((_, el) => el); subtopics = $.makeArray(subtopics).map((subheading) => { diff --git a/website/assets/styles/pages/articles/basic-article.less b/website/assets/styles/pages/articles/basic-article.less index 15027b3b74..c10ba98e00 100644 --- a/website/assets/styles/pages/articles/basic-article.less +++ b/website/assets/styles/pages/articles/basic-article.less @@ -767,6 +767,11 @@ height: 100%; } } + [purpose='embedded-document'] { + margin-bottom: 40px; + width: 100%; + height: 800px; + } table { table-layout: auto; border: 1px solid @border-lt-gray;