]> git.mxchange.org Git - friendica.git/blob - view/theme/vier/templates/threaded_conversation.tpl
removed old comment that is no longer true
[friendica.git] / view / theme / vier / templates / threaded_conversation.tpl
1
2 {{$live_update}}
3
4 {{foreach $threads as $thread}}
5
6 <div id="tread-wrapper-{{$thread.id}}" class="tread-wrapper {{if $thread.threaded}}threaded{{/if}}  {{$thread.toplevel}} {{$thread.network}}">
7        
8        
9                 {{if $thread.type == tag}}
10                         {{include file="wall_item_tag.tpl" item=$thread}}
11                 {{else}}
12                         {{include file="{{$thread.template}}" item=$thread}}
13                 {{/if}}
14                 
15 </div>
16 {{/foreach}}
17
18 <div id="conversation-end"></div>
19
20 {{if $dropping}}
21 <a id="item-delete-selected" href="#" onclick="deleteCheckedItems();return false;">
22         <span class="icon s22 delete text">{{$dropping}}</span>
23 </a>
24 <img id="item-delete-selected-rotator" class="like-rotator" src="images/rotator.gif" style="display: none;" />
25 {{/if}}
26
27 <script>
28 // jquery color plugin from https://raw.github.com/gist/1891361/17747b50ad87f7a59a14b4e0f38d8f3fb6a18b27/gistfile1.js
29     (function(d){d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(f,e){d.fx.step[e]=function(g){if(!g.colorInit){g.start=c(g.elem,e);g.end=b(g.end);g.colorInit=true}g.elem.style[e]="rgb("+[Math.max(Math.min(parseInt((g.pos*(g.end[0]-g.start[0]))+g.start[0]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[1]-g.start[1]))+g.start[1]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[2]-g.start[2]))+g.start[2]),255),0)].join(",")+")"}});function b(f){var e;if(f&&f.constructor==Array&&f.length==3){return f}if(e=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(f)){return[parseInt(e[1]),parseInt(e[2]),parseInt(e[3])]}if(e=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(f)){return[parseFloat(e[1])*2.55,parseFloat(e[2])*2.55,parseFloat(e[3])*2.55]}if(e=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(f)){return[parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16)]}if(e=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(f)){return[parseInt(e[1]+e[1],16),parseInt(e[2]+e[2],16),parseInt(e[3]+e[3],16)]}if(e=/rgba\(0, 0, 0, 0\)/.exec(f)){return a.transparent}return a[d.trim(f).toLowerCase()]}function c(g,e){var f;do{f=d.curCSS(g,e);if(f!=""&&f!="transparent"||d.nodeName(g,"body")){break}e="backgroundColor"}while(g=g.parentNode);return b(f)}var a={transparent:[255,255,255]}})(jQuery);
30     var colWhite = {backgroundColor:'#EFF0F1'};
31     var colShiny = {backgroundColor:'#FCE94F'};
32 </script>
33
34 {{if $mode == display}}
35 <script>
36     var id = window.location.pathname.split("/").pop();
37     $(window).scrollTop($('#item-'+id).position().top);
38     $('#item-'+id).animate(colWhite, 1000).animate(colShiny).animate(colWhite, 2000);   
39 </script>
40 {{/if}}
41