]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frost/head.tpl
move tpl scripts to util
[friendica.git] / view / theme / frost / head.tpl
index 09e97b2f883af50b33440b253b40facc79b0cf17..f4b0a103e64d37174f82320afbf887aa2c278769 100644 (file)
          type="application/opensearchdescription+xml" 
          title="Search in Friendica" />
 
-<!--[if IE]>
-<script type="text/javascript" src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
-<![endif]-->
-<script type="text/javascript" src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js" ></script>
-<script type="text/javascript">
-  tinyMCE.init({ mode : "none"});
-</script>
-<script type="text/javascript" src="$baseurl/js/jquery.js" ></script>
-<script type="text/javascript" src="$baseurl/js/jquery.textinputs.js" ></script>
-<script type="text/javascript" src="$baseurl/js/fk.autocomplete.js" ></script>
-<script type="text/javascript" src="$baseurl/library/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
-<!--<script type="text/javascript" src="$baseurl/library/tiptip/jquery.tipTip.minified.js"></script>-->
-<script type="text/javascript" src="$baseurl/library/jgrowl/jquery.jgrowl_minimized.js"></script>
-<script type="text/javascript" src="$baseurl/js/acl.js" ></script>
-<script type="text/javascript" src="$baseurl/js/webtoolkit.base64.js" ></script>
-<script type="text/javascript" src="$baseurl/view/theme/frost/js/main.js" ></script>
-<script type="text/javascript" src="$baseurl/view/theme/frost/js/theme.js"></script>
 <script>
-
+       window.delItem = "$delitem";
+       window.commentEmptyText = "$comment";
+       window.showMore = "$showmore";
+       window.showFewer = "$showfewer";
        var updateInterval = $update_interval;
        var localUser = {{ if $local_user }}$local_user{{ else }}false{{ endif }};
-
-       function confirmDelete() { return confirm("$delitem"); }
-       function commentOpen(obj,id) {
-               if(obj.value == '$comment') {
-                       obj.value = '';
-                       $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
-                       $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
-                       $("#mod-cmnt-wrap-" + id).show();
-                       openMenu("comment-edit-submit-wrapper-" + id);
-               }
-       }
-       function commentClose(obj,id) {
-               if(obj.value == '') {
-                       obj.value = '$comment';
-                       $("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
-                       $("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
-                       $("#mod-cmnt-wrap-" + id).hide();
-                       closeMenu("comment-edit-submit-wrapper-" + id);
-               }
-       }
-
-
-       function commentInsert(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).html();
-               ins = ins.replace('&lt;','<');
-               ins = ins.replace('&gt;','>');
-               ins = ins.replace('&amp;','&');
-               ins = ins.replace('&quot;','"');
-               $("#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);
-               $(obj).val('');
-       }
-
-       function showHideComments(id) {
-               if( $('#collapsed-comments-' + id).is(':visible')) {
-                       $('#collapsed-comments-' + id).hide();
-                       $('#hide-comments-' + id).html('$showmore');
-               }
-               else {
-                       $('#collapsed-comments-' + id).show();
-                       $('#hide-comments-' + id).html('$showfewer');
-               }
-       }
-
-
 </script>
-