Skip to content

Commit f53fc46

Browse files
IanIan
authored andcommitted
update???
1 parent 74ed13a commit f53fc46

25 files changed

+8043
-5
lines changed

cmddata/assets/Antonio-Bold.woff

21.5 KB
Binary file not shown.

cmddata/assets/Antonio-Bold.woff2

16.2 KB
Binary file not shown.
21.3 KB
Binary file not shown.
16.1 KB
Binary file not shown.

cmddata/assets/jquery-3-7-0.min.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmddata/assets/lcars-colors.css

Lines changed: 649 additions & 0 deletions
Large diffs are not rendered by default.

cmddata/assets/lcars-ultra-classic.css

Lines changed: 2135 additions & 0 deletions
Large diffs are not rendered by default.

cmddata/assets/lcars-ultra-nemesis-blue.css

Lines changed: 2158 additions & 0 deletions
Large diffs are not rendered by default.

cmddata/assets/lcars-ultra-picard.css

Lines changed: 2650 additions & 0 deletions
Large diffs are not rendered by default.

cmddata/assets/lcars.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
document.addEventListener("touchstart", function() {},false);
2+
3+
$(window).scroll(function() {
4+
var height = $(window).scrollTop();
5+
if (height > 100) {
6+
$('.scroll-top a').fadeIn();
7+
} else {
8+
$('.scroll-top a').fadeOut();
9+
}
10+
});
11+
12+
$(document).ready(function() {
13+
$("#scroll-top").click(function(event) {
14+
event.preventDefault();
15+
$("html, body").animate({ scrollTop: 0 }, "slow");
16+
return false;
17+
});
18+
19+
});

0 commit comments

Comments
 (0)