Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
University of Michigan Fencing
club-theme
Commits
faef4a7e
Commit
faef4a7e
authored
May 06, 2016
by
key-amb
Browse files
Fix #11
parent
22423b24
Changes
2
Hide whitespace changes
Inline
Side-by-side
layouts/partials/footer.html
View file @
faef4a7e
...
...
@@ -3,7 +3,7 @@
<div
class=
"row"
>
<div
class=
"col-sm-8"
>
<p
class=
"doc-footer-em"
><a
href=
"#"
>
Back to TOP
</a></p>
<p
class=
"doc-footer-em"
><a
href=
"#"
onclick=
"resetSidebarPos()"
>
Back to TOP
</a></p>
</div>
</div>
...
...
static/js/bootie-docs.js
View file @
faef4a7e
...
...
@@ -29,5 +29,12 @@ window.onload = function() {
});
}
});
}
}
}
function
resetSidebarPos
()
{
var
sideNode
=
$
(
"
#sidebar
"
);
if
(
$
(
window
).
width
()
>
$
(
"
main
"
).
width
()
+
$
(
"
#sidebar
"
).
width
()
)
{
sideNode
.
css
({
"
position
"
:
"
fixed
"
,
"
top
"
:
""
,
"
bottom
"
:
""
});
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment