aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy/head.tpl
diff options
context:
space:
mode:
authorSimon <simon@kisikew.org>2012-04-04 20:35:59 -0700
committerSimon <simon@kisikew.org>2012-04-04 20:35:59 -0700
commit5377683c0ff2959ae515ac21bf32beac8a7e4c60 (patch)
tree2e095d8d69991e5f0e7c0ddc17f1c1235eab8628 /view/theme/dispy/head.tpl
parentd509a463452585bcbb9fccd07857871ca5c8b063 (diff)
parent8e5489846d5d9e87186b7a449227e18183489ddc (diff)
downloadvolse-hubzilla-5377683c0ff2959ae515ac21bf32beac8a7e4c60.tar.gz
volse-hubzilla-5377683c0ff2959ae515ac21bf32beac8a7e4c60.tar.bz2
volse-hubzilla-5377683c0ff2959ae515ac21bf32beac8a7e4c60.zip
Merge pull request #206 from simonlnu/master
update the template files
Diffstat (limited to 'view/theme/dispy/head.tpl')
-rw-r--r--view/theme/dispy/head.tpl24
1 files changed, 21 insertions, 3 deletions
diff --git a/view/theme/dispy/head.tpl b/view/theme/dispy/head.tpl
index f606f2f7e..cd6f5ca97 100644
--- a/view/theme/dispy/head.tpl
+++ b/view/theme/dispy/head.tpl
@@ -7,7 +7,7 @@
<link rel="stylesheet" type="text/css" href="$stylesheet" media="all" />
-<link rel="shortcut icon" href="$baseurl/images/friendika-32.png" />
+<link rel="shortcut icon" href="$baseurl/images/friendica-32.png" />
<link rel="search"
href="$baseurl/opensearch"
type="application/opensearchdescription+xml"
@@ -34,14 +34,16 @@
function commentOpen(obj,id) {
if(obj.value == '$comment') {
obj.value = '';
- obj.className = "comment-edit-text-full";
+ $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
+ $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
}
}
function commentClose(obj,id) {
if(obj.value == '') {
obj.value = '$comment';
- obj.className="comment-edit-text-empty";
+ $("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
+ $("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
closeMenu("comment-edit-submit-wrapper-" + id);
}
}
@@ -63,6 +65,22 @@
$("#comment-edit-text-" + id).val(tmpStr + ins);
}
+ function qCommentInsert(obj,id) {
+ var tmpStr = $("#comment-edit-text-" + id).val();
+ if(tmpStr == '$comment') {
+ tmpStr = '';
+ $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
+ $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
+ openMenu("comment-edit-submit-wrapper-" + id);
+ }
+ var ins = $(obj).val();
+ ins = ins.replace('&lt;','<');
+ ins = ins.replace('&gt;','>');
+ ins = ins.replace('&amp;','&');
+ ins = ins.replace('&quot;','"');
+ $("#comment-edit-text-" + id).val(tmpStr + ins);
+ }
+
function showHideComments(id) {
if( $('#collapsed-comments-' + id).is(':visible')) {
$('#collapsed-comments-' + id).hide();