]> git.mxchange.org Git - friendica.git/blob - view/head.tpl
moved a couple of translatable strings from js include file to translatable view
[friendica.git] / view / head.tpl
1 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
2 <base href="$baseurl" />
3 <link rel="stylesheet" type="text/css" href="$stylesheet" media="all" />
4
5 <!--[if IE]>
6 <script type="text/javascript" src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
7 <![endif]-->
8 <script type="text/javascript" src="$baseurl/include/jquery.js" ></script>
9 <script type="text/javascript" src="$baseurl/include/main.js" ></script>
10 <script>
11
12         function confirmDelete() { return confirm("Delete this item?"); }
13         function commentOpen(obj,id) {
14                 if(obj.value == 'Comment') {
15                         obj.value = '';
16                         obj.className = "comment-edit-text-full";
17                         openMenu("comment-edit-submit-wrapper-" + id);
18                 }
19         }
20         function commentClose(obj,id) {
21                 if(obj.value == '') {
22                         obj.value = 'Comment';
23                         obj.className="comment-edit-text-empty";
24                         closeMenu("comment-edit-submit-wrapper-" + id);
25                 }
26         }
27
28 </script>
29
30