diff options
author | Alex Legler <alex@a3li.li> | 2015-02-25 15:21:07 +0100 |
---|---|---|
committer | Alex Legler <alex@a3li.li> | 2015-02-25 15:21:07 +0100 |
commit | ddd4204478a4ae7399dbc259238d49938dc78d95 (patch) | |
tree | 48ed402f4ccb1a288bd554d658f27f20dee44b31 | |
parent | Display TLD in escaped header fields (diff) | |
download | frontend-ddd4204478a4ae7399dbc259238d49938dc78d95.tar.gz frontend-ddd4204478a4ae7399dbc259238d49938dc78d95.tar.bz2 frontend-ddd4204478a4ae7399dbc259238d49938dc78d95.zip |
Don't show the toggle button on XS devices
-rw-r--r-- | public/js/quoting.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/quoting.js b/public/js/quoting.js index edf8ec0..84be70f 100644 --- a/public/js/quoting.js +++ b/public/js/quoting.js @@ -9,7 +9,7 @@ $(function() { return; } - var btn = $("<button class=\"btn btn-xs btn-default ag-toggle-quotes\"><span class=\"fa fa-quote-left\"></span> Toggle quotes</button>"); + var btn = $("<button class=\"btn btn-xs btn-default hidden-xs ag-toggle-quotes\"><span class=\"fa fa-quote-left\"></span> Toggle quotes</button>"); btn.insertAfter(table); btn.click(function() { $('.ag-quote').each(function(index) { |