{script} {literal} addInvitation = function( nodes ) { var $nodes, start, complete; $nodes = $(nodes); start = function() { var $self = $(this); if ( $self.val() == $self.attr('inv') ) { $self.val(''); } $self.removeClass('invitation'); }; complete = function() { var $self = $(this); if ( !$self.val() ) { $self.val($self.attr('inv')); $self.addClass('invitation'); } }; $nodes.focus(start); $nodes.blur(complete); }; addInvitation($('#ci-message')); {/literal} {/script} {style} {literal} .avatar_select_list{ height:480px; width: 547px; text-align:left; padding:0 8px; } .avatar_select_list .ow_user_list_picture{ height:45px; } .avatar_select_list .ow_user_list_data { width: 190px; overflow: hidden; } .avatar_select_list .ow_user_list_item{ cursor:pointer; } .avatar_select_list .ow_item_set2{ width:48%; } .avatar_select_list .asl_users{ height: 430px; overflow-y:scroll; } html .ow_footer { display: none; } {/literal} {/style}
{if empty($users)}
{text key='base+empty_user_avatar_list_select'}
{else}
{foreach from=$users item='user' name='user_list'} {if $smarty.foreach.user_list.first}
{/if} {decorator name="user_list_item" avatar=$user.avatar username=$user.title displayName=$user.title noUserLink=1 content=$user.fields contId=$user.uniqId set_class='ow_item_set2'} {if $smarty.foreach.user_list.iteration % 2 == 0 && !$smarty.foreach.user_list.last}
{/if} {if $smarty.foreach.user_list.last}
{/if} {/foreach}
{if !empty($langs.countLabel)}{/if} {if !empty($langs.countLabel)}
{$langs.startCountLabel}
{/if}
{decorator name='button' label=$langs.startButtonLabel class='submit'}
{/if}