diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2014-04-08 21:58:44 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2014-04-08 21:58:44 +0200 |
commit | 3945335f3988c7eb9d5bbf9e9428b2cd6c173a2e (patch) | |
tree | f02291d5bd80a0d7fbe542ea191fcd6f902db75a /themes/baggy | |
parent | 5fe19480977a5b063769d1a3b3dce168873d4c8a (diff) | |
download | wallabag-3945335f3988c7eb9d5bbf9e9428b2cd6c173a2e.tar.gz wallabag-3945335f3988c7eb9d5bbf9e9428b2cd6c173a2e.tar.zst wallabag-3945335f3988c7eb9d5bbf9e9428b2cd6c173a2e.zip |
can't close search popup with the cross picture #613
Diffstat (limited to 'themes/baggy')
-rwxr-xr-x | themes/baggy/_head.twig | 1 | ||||
-rw-r--r-- | themes/baggy/_search-form.twig | 22 |
2 files changed, 5 insertions, 18 deletions
diff --git a/themes/baggy/_head.twig b/themes/baggy/_head.twig index 04898d85..be11673f 100755 --- a/themes/baggy/_head.twig +++ b/themes/baggy/_head.twig | |||
@@ -12,4 +12,5 @@ | |||
12 | <script src="{{ poche_url }}themes/{{theme}}/js/jquery.cookie.js"></script> | 12 | <script src="{{ poche_url }}themes/{{theme}}/js/jquery.cookie.js"></script> |
13 | <script src="{{ poche_url }}themes/{{theme}}/js/init.js"></script> | 13 | <script src="{{ poche_url }}themes/{{theme}}/js/init.js"></script> |
14 | <script src="{{ poche_url }}themes/default/js/saveLink.js"></script> | 14 | <script src="{{ poche_url }}themes/default/js/saveLink.js"></script> |
15 | <script src="{{ poche_url }}themes/default/js/popupForm.js"></script> | ||
15 | <script src="{{ poche_url }}themes/{{theme}}/js/closeMessage.js"></script> | 16 | <script src="{{ poche_url }}themes/{{theme}}/js/closeMessage.js"></script> |
diff --git a/themes/baggy/_search-form.twig b/themes/baggy/_search-form.twig index 1fd4154e..b8ac3bfa 100644 --- a/themes/baggy/_search-form.twig +++ b/themes/baggy/_search-form.twig | |||
@@ -1,21 +1,7 @@ | |||
1 | <div id="search-form" class="messages info"> | 1 | <div id="search-form" class="messages info"> |
2 | <form method="get" action="index.php"> | 2 | <form method="get" action="index.php"> |
3 | <input type="hidden" name="view" value="search"></input> | 3 | <input type="hidden" name="view" value="search"></input> |
4 | <label><a href="javascript: void(null);" id="search-form-close">X</a>{% trans "Search" %}</label> : <input type="text" name="search" /> | 4 | <label><a href="javascript: void(null);" id="search-form-close">X</a>{% trans "Search" %}</label> : <input type="text" name="search" /> |
5 | <input id="submit-search" type="submit" value="{% trans "Search" %} !"></input> | 5 | <input id="submit-search" type="submit" value="{% trans "Search" %} !"></input> |
6 | </form> | 6 | </form> |
7 | </div> | 7 | </div> \ No newline at end of file |
8 | <script type="text/javascript"> | ||
9 | $(document).ready(function() { | ||
10 | |||
11 | $("#search-form").hide(); | ||
12 | |||
13 | $("#search").click(function(){ | ||
14 | $("#search-form").toggle(); | ||
15 | $("#search").toggleClass("current"); | ||
16 | $("#search-arrow").toggleClass("arrow-down"); | ||
17 | }); | ||
18 | |||
19 | |||
20 | }); | ||
21 | </script> \ No newline at end of file | ||