aboutsummaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
Diffstat (limited to 'src/web')
-rw-r--r--src/web/static/js/feed.js22
-rw-r--r--src/web/translations/fr/LC_MESSAGES/messages.mobin16913 -> 16842 bytes
2 files changed, 0 insertions, 22 deletions
diff --git a/src/web/static/js/feed.js b/src/web/static/js/feed.js
deleted file mode 100644
index ceef58fc..00000000
--- a/src/web/static/js/feed.js
+++ /dev/null
@@ -1,22 +0,0 @@
-$('.container').on('click', '#add-feed-filter-row', function() {
- $('#filters-container').append(
- '<div class="form-group">'
- + ' <input value="-" type="button" class="form-control del-feed-filter-row" />'
- + ' <select name="type" class="form-control">'
- + ' <option value="simple match" selected>simple match</option>'
- + ' <option value="regex">regex</option>'
- + ' </select>'
- + ' <input type="text" class="form-control" name="pattern" />'
- + ' <select name="action_on" class="form-control">'
- + ' <option value="match" selected>match</option>'
- + ' <option value="no match">no match</option>'
- + ' </select>'
- + ' <select name="action" class="form-control">'
- + ' <option value="mark as read" selected>mark as read</option>'
- + ' <option value="mark as favorite">mark as favorite</option>'
- + ' </select>'
- + '</div>');
-});
-$('.container').on('click', '.del-feed-filter-row', function() {
- $(this).parent().remove();
-});
diff --git a/src/web/translations/fr/LC_MESSAGES/messages.mo b/src/web/translations/fr/LC_MESSAGES/messages.mo
index 6daf1020..c7135b4c 100644
--- a/src/web/translations/fr/LC_MESSAGES/messages.mo
+++ b/src/web/translations/fr/LC_MESSAGES/messages.mo
Binary files differ
bgstack15