]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/slackr/theme.php
Merge branch 'develop' of github.com:annando/friendica into 1409-shadow-items
[friendica.git] / view / theme / slackr / theme.php
index 9887008606dcd7603d0079a41f3106ed4f40bf1c..43deb4b8ccebe8590751f5abd749f9e5b3e19c21 100644 (file)
@@ -1,9 +1,11 @@
 <?php
+
+function slackr_init(&$a) {
 $a->theme_info = array(
   'extends' => 'duepuntozero',
 );
+set_template_engine($a, 'smarty3');
 
-function slackr_init(&$a) {
 $a->page['htmlhead'] .= <<< EOT
 <script>
 function insertFormatting(comment,BBcode,id) {
@@ -37,13 +39,22 @@ function insertFormatting(comment,BBcode,id) {
        return true;
 }
 
-function cmtBbOpen(id) {
-       $(".comment-edit-bb-" + id).show();
+function cmtBbOpen(comment, id) {
+       if($(comment).hasClass('comment-edit-text-full')) {
+               $(".comment-edit-bb-" + id).show();
+               return true;
+       }
+       return false;
 }
-function cmtBbClose(id) {
-       $(".comment-edit-bb-" + id).hide();
+function cmtBbClose(comment, id) {
+//     if($(comment).hasClass('comment-edit-text-empty')) {
+//             $(".comment-edit-bb-" + id).hide();
+//             return true;
+//     }
+       return false;
 }
 
+
 function hidecal() {
        if(editor) return;
        $('.fc').hide();
@@ -96,4 +107,4 @@ $('.savedsearchterm').hover(
 
 </script>
 EOT;
-}
\ No newline at end of file
+}