Sha256: 16d83b37066b99deb832fbfe47d21ef3ff9c824f1dcc287b9726607ab18068eb

Contents?: true

Size: 1.49 KB

Versions: 5

Compression:

Stored size: 1.49 KB

Contents

     <script type="text/javascript">
        $(document).ready(function () {
					
					if (authByCookie()){
					  //Authentication by cookie
            
            $("#passwordFormChat").hide();
            $('.connectChatButton').bind('click', function () {
              connectToServerWithCookie();
            });
            
					} else {
						//Authentication by password
            
            if ((window.sessionStorage) && (sessionStorage.getItem("ss_user_pass") != null)) {
              $("#passwordFormChat").hide();
            } else {
              $("#passwordFormChat").show();
            }
            
            $('.connectChatButton').bind('click', function () {
              connectToServerWithPassword($('#user_password').val());
            });
          
            $('.storePass').bind('click', function () {
              storePassword();
            });
						
					}
					
        });
      </script>
			
			<div class="block">
        <div class="header">
          <%=image_tag("btn/btn_friend.png", :class => "header_icon")%>
          <div class="header_text">
            <%=t('chat.disconnected')%>
          </div>
        </div>
      </div>
  
      <div class="chat_off">
      	<div id="passwordFormChat">
      	  <label for="user_password" class="chatPasswordTitle"><%=t('chat.password')%></label>
          <input id="user_password" class="chat_password" type="password"></input>
				</div>
				<input class="connectChatButton storePass" value="Connect">
      </div>

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
social_stream-0.12.4 presence/app/views/xmpp/_chat_off.html.erb
social_stream-0.12.3 presence/app/views/xmpp/_chat_off.html.erb
social_stream-presence-0.0.20 app/views/xmpp/_chat_off.html.erb
social_stream-presence-0.0.19 app/views/xmpp/_chat_off.html.erb
social_stream-0.12.2 presence/app/views/xmpp/_chat_off.html.erb