Sha256: 8f3c0598bbe87129a06e67ca44001446f9615c54dab287fd944a321c4d5f99d7

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 KB

Contents

     <script type="text/javascript">
        $(document).ready(function () { 			
		      if ((window.sessionStorage) && (sessionStorage.getItem("ss_user_pass") != null)) {
		        $("#passwordFormChat").hide();
		      } else {
		        $("#passwordFormChat").show();
		      }
					
		      $('.connectChatButton').bind('click', function () {
		        connectToServer($('#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">
            Chat Disconnected
          </div>
        </div>
      </div>
  
      <div class="chat_off">
      	<div id="passwordFormChat">
      	  <label for="user_password" class="chatPasswordTitle">Password</label>
          <input id="user_password" class="chat_password" type="password"></input>
				</div>
				<input class="other_blue connectChatButton storePass" value="Connect">
      </div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
social_stream-0.11.5 presence/app/views/xmpp/_chat_off.html.erb
social_stream-0.11.4 presence/app/views/xmpp/_chat_off.html.erb
social_stream-0.11.3 presence/app/views/xmpp/_chat_off.html.erb