Gentoo Archives: gentoo-commits

From: Alex Legler <a3li@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/ag-web:master commit in: public/js/
Date: Wed, 25 Feb 2015 14:21:21
Message-Id: 1424874067.ddd4204478a4ae7399dbc259238d49938dc78d95.a3li@gentoo
1 commit: ddd4204478a4ae7399dbc259238d49938dc78d95
2 Author: Alex Legler <alex <AT> a3li <DOT> li>
3 AuthorDate: Wed Feb 25 14:21:07 2015 +0000
4 Commit: Alex Legler <a3li <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 25 14:21:07 2015 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/ag-web.git;a=commit;h=ddd42044
7
8 Don't show the toggle button on XS devices
9
10 ---
11 public/js/quoting.js | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14 diff --git a/public/js/quoting.js b/public/js/quoting.js
15 index edf8ec0..84be70f 100644
16 --- a/public/js/quoting.js
17 +++ b/public/js/quoting.js
18 @@ -9,7 +9,7 @@ $(function() {
19 return;
20 }
21
22 - var btn = $("<button class=\"btn btn-xs btn-default ag-toggle-quotes\"><span class=\"fa fa-quote-left\"></span> Toggle quotes</button>");
23 + var btn = $("<button class=\"btn btn-xs btn-default hidden-xs ag-toggle-quotes\"><span class=\"fa fa-quote-left\"></span> Toggle quotes</button>");
24 btn.insertAfter(table);
25 btn.click(function() {
26 $('.ag-quote').each(function(index) {