Skip to content

Commit

Permalink
fix: 🔨 fix broken links (Closes #83)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChildishGiant committed Mar 23, 2021
1 parent 94ad89c commit fbfd2d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/js/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@
var query = $(this).val();
var results = window.index.search(query).slice(0, 6).map(function (result) {
result = window.indexStore[result.ref];
return [result.title, "/" + result.href];
return [result.title, result.href];
});
renderResults(results);
}));
Expand Down
2 changes: 1 addition & 1 deletion jade/_navbar.jade
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ header
i.material-icons menu
ul#nav-mobile.sidenav.sidenav-fixed
li(class="logo")
a#logo-container.brand-logo(href='/')
a#logo-container.brand-logo(href='/materialize/')
object#front-page-logo(type='image/svg+xml', data='res/materialize.svg') Your browser does not support SVG
li.version
a.dropdown-trigger(href='#' data-target='version-dropdown') 1.0.0
Expand Down
2 changes: 1 addition & 1 deletion jade/index/index_content.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <h4 class="light">A modern responsive front-end framework based on Material Desi
</div>
</div>
<div class="row center">
<a href="/getting-started.html" id="download-button" class="btn-large waves-effect waves-light">Get Started</a>
<a href="getting-started.html" id="download-button" class="btn-large waves-effect waves-light">Get Started</a>
<a href="https://github.com/materializecss/materialize/blob/v1-dev/v1-upgrade-guide.md" id="upgrade-button" class="btn-large waves-effect waves-light">Upgrade from 0.100.2</a>
</div>
<div class="row center"><a class="current-version-number" href="https://github.com/materializecss/materialize">Release: 1.0.0</a></div>
Expand Down

0 comments on commit fbfd2d6

Please sign in to comment.