diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-12-11 10:34:34 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-12-11 10:34:34 +0100 |
| commit | 3aad9b4b70921e9be670560f42f00dcd448e27bb (patch) | |
| tree | e43bb3ab6ffd38492c6ca1c733c74e51443491ef /public/assets/js | |
| parent | d56452cd8c61cf463cd1bfbb5488dfc2f7387175 (diff) | |
bumpViewCount and revisions
Diffstat (limited to 'public/assets/js')
| -rw-r--r-- | public/assets/js/lib/views/index/threadbox.js | 2 | ||||
| -rw-r--r-- | public/assets/js/vendor/view/formview.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/public/assets/js/lib/views/index/threadbox.js b/public/assets/js/lib/views/index/threadbox.js index 2cde812..f3c4e0f 100644 --- a/public/assets/js/lib/views/index/threadbox.js +++ b/public/assets/js/lib/views/index/threadbox.js @@ -38,7 +38,7 @@ var ThreadBox = View.extend({ this.appendThreads(keywords[keyword]) }) } - if (is_mobile) { + if (is_mobile || window.innerWidth < 700) { $('.ledger .keyword').each(function(){ $('td:nth-child(2)', this).prepend($("td:nth-child(1)", this).html()) }) diff --git a/public/assets/js/vendor/view/formview.js b/public/assets/js/vendor/view/formview.js index 1f681cb..6da7db6 100644 --- a/public/assets/js/vendor/view/formview.js +++ b/public/assets/js/vendor/view/formview.js @@ -100,7 +100,7 @@ var FormView = View.extend({ dataType: "json", processData: false, success: function(response){ - console.log(response) + // console.log(response) if (response.error) { var errors = [] for (var key in response.error.errors) { |
