Skip to content

Commit 0858bff

Browse files
committed
Initial Commit
0 parents  commit 0858bff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+5382
-0
lines changed

assets/css/elsa.css

Lines changed: 1090 additions & 0 deletions
Large diffs are not rendered by default.
15.4 KB
Binary file not shown.
14.9 KB
Binary file not shown.
15.7 KB
Binary file not shown.

assets/js/elsa.js

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/**
2+
* JavaScript
3+
*
4+
* @package elsa
5+
* @since 0.1
6+
*/
7+
8+
/**
9+
* Elsa JQuery Function
10+
*
11+
* @since 0.1
12+
*/
13+
14+
( function($) {
15+
16+
/*
17+
* Toggle Search on Desktop
18+
*/
19+
20+
$('.search-toggle').on( 'click', function () {
21+
$('body').toggleClass('show-desktop-search');
22+
});
23+
24+
/*
25+
* Clear Search Input Field
26+
*/
27+
28+
$(document).ready(function(){
29+
30+
// @navigation
31+
$(".menu-search input").val("");
32+
// @pages
33+
$(".content-search input").val("");
34+
35+
});
36+
37+
} )(jQuery);

assets/svg/by.svg

Lines changed: 20 additions & 0 deletions
Loading

assets/svg/cc-by.svg

Lines changed: 155 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)