aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/static
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2015-07-02 14:16:14 +0200
committerFrançois Schmidts <francois.schmidts@gmail.com>2015-07-02 16:48:48 +0200
commitffe491466a3c9b7096e32d263fd5b35bf3415559 (patch)
tree09fc4103d02b78c8655e97a5dc0f351175253d93 /pyaggr3g470r/static
parentredoing home page in a more 'bootstrapy' way (diff)
downloadnewspipe-ffe491466a3c9b7096e32d263fd5b35bf3415559.tar.gz
newspipe-ffe491466a3c9b7096e32d263fd5b35bf3415559.tar.bz2
newspipe-ffe491466a3c9b7096e32d263fd5b35bf3415559.zip
basic UI to maniuplate filters
Diffstat (limited to 'pyaggr3g470r/static')
-rw-r--r--pyaggr3g470r/static/js/feed.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/pyaggr3g470r/static/js/feed.js b/pyaggr3g470r/static/js/feed.js
new file mode 100644
index 00000000..b1e3110e
--- /dev/null
+++ b/pyaggr3g470r/static/js/feed.js
@@ -0,0 +1,22 @@
+$('.container').on('click', '#add-feed-filter-row', function() {
+ $('#filters-container').append(
+ '<div class="col-sm-9">'
+ + ' <input value="-" type="button" class="del-feed-filter-row" />'
+ + ' <select name="type">'
+ + ' <option value="simple match" selected>simple match</option>'
+ + ' <option value="regex">regex</option>'
+ + ' </select/>'
+ + ' <input type="text" size="50%" name="pattern" />'
+ + ' <select name="action_on">'
+ + ' <option value="match" selected>match</option>'
+ + ' <option value="no match">no match</option>'
+ + ' </select/>'
+ + ' <select name="action">'
+ + ' <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();
+});
bgstack15