aboutsummaryrefslogtreecommitdiffstats
path: root/view/jot-header.tpl
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-11-03 20:40:56 -0700
committerFriendika <info@friendika.com>2011-11-03 20:40:56 -0700
commite19b5971804f0e07d7f3e4ad6d7b71e05ff49ed5 (patch)
treef121a8086601cc30521ff59970393f5908b57129 /view/jot-header.tpl
parent5f531aa53734818aebb602a8833ea76ec33db90d (diff)
downloadvolse-hubzilla-e19b5971804f0e07d7f3e4ad6d7b71e05ff49ed5.tar.gz
volse-hubzilla-e19b5971804f0e07d7f3e4ad6d7b71e05ff49ed5.tar.bz2
volse-hubzilla-e19b5971804f0e07d7f3e4ad6d7b71e05ff49ed5.zip
tinymce tag complete stuff
Diffstat (limited to 'view/jot-header.tpl')
-rw-r--r--view/jot-header.tpl25
1 files changed, 22 insertions, 3 deletions
diff --git a/view/jot-header.tpl b/view/jot-header.tpl
index ecf27e1b1..9ded3e9b4 100644
--- a/view/jot-header.tpl
+++ b/view/jot-header.tpl
@@ -30,9 +30,26 @@ function initEditor(cb){
content_css: "$baseurl/view/custom_tinymce.css",
theme_advanced_path : false,
setup : function(ed) {
- //Character count
+ cPopup = null;
+ ed.onKeyDown.add(function(ed,e) {
+ if(cPopup !== null)
+ cPopup.onkey(e);
+ });
+
ed.onKeyUp.add(function(ed, e) {
var txt = tinyMCE.activeEditor.getContent();
+ match = txt.match(/@([^ \n]+)$/);
+ if(match!==null) {
+ if(cPopup === null) {
+ cPopup = new ACPopup(this,baseurl+"/acl");
+ }
+ if(cPopup.ready && match[1]!==cPopup.searchText) cPopup.search(match[1]);
+ if(! cPopup.ready) cPopup = null;
+ }
+ else {
+ if(cPopup !== null) { cPopup.close(); cPopup = null; }
+ }
+
textlen = txt.length;
if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) {
$('#profile-jot-desc').html(ispublic);
@@ -41,6 +58,8 @@ function initEditor(cb){
$('#profile-jot-desc').html('&nbsp;');
}
+ //Character count
+
if(textlen <= 140) {
$('#character-counter').removeClass('red');
$('#character-counter').removeClass('orange');
@@ -71,8 +90,8 @@ function initEditor(cb){
editor = true;
// setup acl popup
$("a#jot-perms-icon").fancybox({
- 'transitionIn' : 'none',
- 'transitionOut' : 'none'
+ 'transitionIn' : 'elastic',
+ 'transitionOut' : 'elastic'
});
} else {
if (typeof cb!="undefined") cb();