mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
remove buggy swipe actions
This commit is contained in:
parent
0dd043c19b
commit
2869f01804
2 changed files with 0 additions and 17 deletions
|
@ -113,14 +113,5 @@
|
||||||
|
|
||||||
// use keyboard to do actions
|
// use keyboard to do actions
|
||||||
actionArticle('{{ entry.id|e }}');
|
actionArticle('{{ entry.id|e }}');
|
||||||
|
|
||||||
// swipe to right or left on mobile to navigate
|
|
||||||
$('article').on("swiperight", function(){
|
|
||||||
goLeft('?view=view&id={{ navigate.nextid|e }}');
|
|
||||||
});
|
|
||||||
$('article').on("swipeleft", function(){
|
|
||||||
goRight('?view=view&id={{ navigate.previousid|e }}');
|
|
||||||
});
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -129,13 +129,5 @@
|
||||||
// Use left and right arrow to navigate on with keyboard
|
// Use left and right arrow to navigate on with keyboard
|
||||||
navigateKeyboard('?view=view&id={{ navigate.nextid|e }}','?view=view&id={{ navigate.previousid|e }}');
|
navigateKeyboard('?view=view&id={{ navigate.nextid|e }}','?view=view&id={{ navigate.previousid|e }}');
|
||||||
|
|
||||||
// swipe to right or left on mobile to navigate
|
|
||||||
$('article').on("swiperight", function(){
|
|
||||||
goLeft('?view=view&id={{ navigate.nextid|e }}');
|
|
||||||
});
|
|
||||||
$('article').on("swipeleft", function(){
|
|
||||||
goRight('?view=view&id={{ navigate.previousid|e }}');
|
|
||||||
});
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in a new issue