aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-11-02 18:25:34 -0700
committerzotlabs <mike@macgirvin.com>2017-11-02 18:25:34 -0700
commite70bd0054c4ffb8aadeec8ee7c14dccdb34ab934 (patch)
treec9f50b84bbe5c2d32bacfbc260827f5f24a740db /view
parentb450b6a43593fa19e25bfd472848517092df2ef6 (diff)
downloadvolse-hubzilla-e70bd0054c4ffb8aadeec8ee7c14dccdb34ab934.tar.gz
volse-hubzilla-e70bd0054c4ffb8aadeec8ee7c14dccdb34ab934.tar.bz2
volse-hubzilla-e70bd0054c4ffb8aadeec8ee7c14dccdb34ab934.zip
hubzilla issue #896
Diffstat (limited to 'view')
-rw-r--r--view/css/mod_pubstream.css3
-rw-r--r--view/js/mod_pubstream.js5
2 files changed, 8 insertions, 0 deletions
diff --git a/view/css/mod_pubstream.css b/view/css/mod_pubstream.css
new file mode 100644
index 000000000..dde242d4e
--- /dev/null
+++ b/view/css/mod_pubstream.css
@@ -0,0 +1,3 @@
+#jot-popup {
+ display: none;
+}
diff --git a/view/js/mod_pubstream.js b/view/js/mod_pubstream.js
new file mode 100644
index 000000000..7e24a7f86
--- /dev/null
+++ b/view/js/mod_pubstream.js
@@ -0,0 +1,5 @@
+$(document).ready(function() {
+ $(".comment-edit-wrapper textarea").editor_autocomplete(baseurl+"/acl?f=&n=1");
+ // make auto-complete work in more places
+ $(".wall-item-comment-wrapper textarea").editor_autocomplete(baseurl+"/acl?f=&n=1");
+});